Merge pull request #1071 from dbungert/source-configured

server: Source.configured needs await
This commit is contained in:
Michael Hudson-Doyle 2021-10-05 11:02:54 +13:00 committed by GitHub
commit ffa0d722da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ class MetaController:
if variant in fake_entries:
if self.app.base_model.source.current.variant != variant:
self.app.base_model.source.current = fake_entries[variant]
self.app.controllers.Source.configured()
await self.app.controllers.Source.configured()
else:
self.app.base_model.set_source_variant(variant)
self.app.set_source_variant(variant)