diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-04-03 19:50:46 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-03 19:50:46 -0500 |
commit | 25cc5b997f07daaeb64ef434992cb95892546ff5 (patch) | |
tree | 09531de05bbce7edddc9b5d48cb4cd56bdabcf90 /src/state/models/me.ts | |
parent | 50f7f9877ff000fac3a22d4432253f91657b7e61 (diff) | |
download | voidsky-25cc5b997f07daaeb64ef434992cb95892546ff5.tar.zst |
Rework the me.follows cache to reduce network load (#384)
Diffstat (limited to 'src/state/models/me.ts')
-rw-r--r-- | src/state/models/me.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/state/models/me.ts b/src/state/models/me.ts index 26f0849c7..3adbc7c6c 100644 --- a/src/state/models/me.ts +++ b/src/state/models/me.ts @@ -104,9 +104,6 @@ export class MeModel { } }) this.mainFeed.clear() - await this.follows.fetch().catch(e => { - this.rootStore.log.error('Failed to load my follows', e) - }) await Promise.all([ this.mainFeed.setup().catch(e => { this.rootStore.log.error('Failed to setup main feed model', e) |