From bdbfe579d378656f5c1a1ab24fc8246bc287c6a0 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Tue, 23 Mar 2021 10:24:55 -0400 Subject: [PATCH] add warning comment Signed-off-by: Sebastian Malton --- src/common/user-store.ts | 4 ++++ 1 file changed, 4 insertions(+) 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();