mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 10:38:07 +01:00
Fix error on viewing a profile when unlogged (#28465)
This commit is contained in:
parent
9251779d75
commit
1c041356a1
1 changed files with 2 additions and 0 deletions
|
@ -85,6 +85,8 @@ const titleFromAccount = account => {
|
|||
};
|
||||
|
||||
const messageForFollowButton = relationship => {
|
||||
if(!relationship) return messages.follow;
|
||||
|
||||
if (relationship.get('following') && relationship.get('followed_by')) {
|
||||
return messages.mutual;
|
||||
} else if (!relationship.get('following') && relationship.get('followed_by')) {
|
||||
|
|
Loading…
Reference in a new issue