Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix: correctly track when profile state was last updated

+1
+1
src/state/models/me.ts
··· 115 115 async updateIfNeeded() { 116 116 if (Date.now() - this.lastProfileStateUpdate > PROFILE_UPDATE_INTERVAL) { 117 117 this.rootStore.log.debug('Updating me profile information') 118 + this.lastProfileStateUpdate = Date.now() 118 119 await this.fetchProfile() 119 120 await this.fetchInviteCodes() 120 121 }