Merge pull request #2480 from nextcloud/bugfix/noissue/remove-false-errors

Don't throw false errors
This commit is contained in:
Joas Schilling 2019-11-21 15:16:31 +01:00 коммит произвёл GitHub
Родитель 9fcc091731 5448932bf8
Коммит 249d9b2cb1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 4 удалений

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

@ -74,8 +74,6 @@ const mutations = {
addParticipant(state, { token, participant }) {
if (!state.participants[token]) {
Vue.set(state.participants, token, [])
} else {
console.error('Error while adding the participant')
}
state.participants[token].push(participant)
},
@ -101,8 +99,6 @@ const mutations = {
purgeParticipantsStore(state, token) {
if (state.participants[token]) {
Vue.delete(state.participants, token)
} else {
console.error('Error while purging the participants')
}
},
}