Merge pull request #5645 from nextcloud/techdebt/noid/fix-participant-isself

Remove unused userId in Participant component
This commit is contained in:
Joas Schilling 2021-05-20 11:15:46 +02:00 коммит произвёл GitHub
Родитель 283f1a9afa bf77c62526
Коммит db92d48428
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 6 удалений

Просмотреть файл

@ -378,12 +378,6 @@ export default {
},
isSelf() {
// User
if (this.userId) {
return this.$store.getters.getUserId() === this.userId
}
// Guest
return this.sessionIds.length && this.sessionIds.indexOf(this.currentParticipant.sessionId) >= 0
},
selfIsModerator() {