Merge remote-tracking branch 'origin' into eric/app-864-integrate-post-tags-into-app

* origin:
  Fix bug that prevents unfollowing (#1633)
This commit is contained in:
Eric Bailey
2023-10-09 11:02:56 -05:00
+2 -2
View File
@@ -102,8 +102,8 @@ export class MyFollowsCache {
getFollowUri(did: string): string {
const v = this.byDid[did]
if (typeof v === 'string') {
return v
if (v && typeof v.followRecordUri === 'string') {
return v.followRecordUri
}
throw new Error('Not a followed user')
}