modules/page/html/render/profile.jsView |
---|
144 | 144 | '⚠️ ', computed(['This person is blocked by %s of your friends.', contact.blockingFriendsCount], plural) |
145 | 145 | ]) |
146 | 146 | ])), |
147 | 147 | |
148 | | - when(contact.noOutgoing, |
| 148 | + when(contact.noIncoming, |
149 | 149 | h('section -distanceWarning', [ |
150 | 150 | h('h1', i18n(`You don't follow anyone who follows this person`)), |
151 | 151 | h('p', i18n('You might not be seeing their latest messages. You could try joining a pub that they are a member of.')), |
152 | | - when(contact.hasIncoming, |
| 152 | + when(contact.hasOutgoing, |
153 | 153 | h('p', i18n('However, since they follow someone that follows you, they should be able to see your posts.')), |
154 | 154 | h('p', i18n(`They might not be able to see your posts either.`)) |
155 | 155 | ) |
156 | 156 | ]), |
157 | | - when(contact.noIncoming, |
| 157 | + when(contact.noOutgoing, |
158 | 158 | h('section -distanceWarning', [ |
159 | 159 | h('h1', i18n('This person does not follow anyone that follows you')), |
160 | 160 | h('p', i18n('They might not receive your private messages or replies. You could try joining a pub that they are a member of.')), |
161 | 161 | h('p', i18n('However, since you follow someone that follows them, you should be able to see their latest posts.')) |