An ATproto social media client -- with an independent Appview.
6
fork

Configure Feed

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

Fix bug that prevents unfollowing (#1633)

authored by

Paul Frazee and committed by
GitHub
77b21dfb 9cff8244

+2 -2
+2 -2
src/state/models/cache/my-follows.ts
··· 102 102 103 103 getFollowUri(did: string): string { 104 104 const v = this.byDid[did] 105 - if (typeof v === 'string') { 106 - return v 105 + if (v && typeof v.followRecordUri === 'string') { 106 + return v.followRecordUri 107 107 } 108 108 throw new Error('Not a followed user') 109 109 }