···102102103103 getFollowUri(did: string): string {
104104 const v = this.byDid[did]
105105- if (typeof v === 'string') {
106106- return v
105105+ if (v && typeof v.followRecordUri === 'string') {
106106+ return v.followRecordUri
107107 }
108108 throw new Error('Not a followed user')
109109 }