diff --git a/app/appstate.py b/app/appstate.py index 1f99350..857246c 100644 --- a/app/appstate.py +++ b/app/appstate.py @@ -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