Skip to content

Commit 393ea92

Browse files
authored
Merge pull request #29870 from nextcloud/fix/erroneous-status-on-profile
2 parents a1497c7 + 3aea0f2 commit 393ea92

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

core/js/dist/profile.js

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/js/dist/profile.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/src/views/Profile.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,9 @@ export default {
273273
274274
methods: {
275275
handleStatusUpdate(status) {
276-
this.status = status
276+
if (this.isCurrentUser && status.userId === this.userId) {
277+
this.status = status
278+
}
277279
},
278280
279281
openStatusModal() {

0 commit comments

Comments
 (0)