Merge pull request #2352 from nextcloud/bugfix/vuejs/simplify-page-title-generation

Do not fail hard when the conversation wasn't found (yet)
This commit is contained in:
Marco Ambrosini 2019-10-24 14:49:17 +02:00 коммит произвёл GitHub
Родитель 2203284f01 0fa7b5f123
Коммит 75f5fa6040
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 6 удалений

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

@ -150,18 +150,17 @@ export default {
onResize() {
this.windowHeight = window.innerHeight - document.getElementById('header').clientHeight
},
newButtonAction(e) {
console.debug(e)
},
log(e) {
console.debug(e)
},
/**
* Get a conversation's name.
* @param {string} token The conversation's token
* @returns {string} The conversation's name
*/
getConversationName(token) {
if (!this.$store.getters.conversations[token]) {
return ''
}
return this.$store.getters.conversations[token].displayName
}
}