Fix error on viewing a profile when unlogged (#28465)
parent
9251779d75
commit
1c041356a1
|
@ -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 New Issue