diff --git a/src/common/user-store.ts b/src/common/user-store.ts index 480d52303b..0dac0f51f9 100644 --- a/src/common/user-store.ts +++ b/src/common/user-store.ts @@ -82,6 +82,10 @@ export class UserStore extends BaseStore { } async load(): Promise { + /** + * This has to be here before the call to `new Config` in `super.load()` + * as we have to make sure that file is in the expected place for that call + */ await fileNameMigration(); return super.load();