about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/state/models/me.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/state/models/me.ts b/src/state/models/me.ts
index 1dcccb6f1..a0591aeca 100644
--- a/src/state/models/me.ts
+++ b/src/state/models/me.ts
@@ -115,6 +115,7 @@ export class MeModel {
   async updateIfNeeded() {
     if (Date.now() - this.lastProfileStateUpdate > PROFILE_UPDATE_INTERVAL) {
       this.rootStore.log.debug('Updating me profile information')
+      this.lastProfileStateUpdate = Date.now()
       await this.fetchProfile()
       await this.fetchInviteCodes()
     }