fixes arch versions not being updated
This commit is contained in:
Christoph Reiter
2023-04-25 09:41:13 +02:00
parent 96c1dc7365
commit 37bf16b7d3

View File

@@ -229,7 +229,7 @@ class AppState:
return self._ext_infos.get(id, {})
def set_ext_infos(self, id: ExtId, info: Dict[str, ExtInfo]) -> None:
self._ext_infos.setdefault(id, info)
self._ext_infos[id] = info
self._update_etag()
@property