Browse Source
Merge pull request #4018 from nextcloud/bugfix/noid/remove-duplicate-slashes
Remove duplicated slashes
pull/4024/head
Joas Schilling
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
src/views/Dashboard.vue
|
|
|
@ -86,7 +86,7 @@ export default { |
|
|
|
computed: { |
|
|
|
callLink() { |
|
|
|
return (conversation) => { |
|
|
|
return generateUrl('/call/' + conversation.token) |
|
|
|
return generateUrl('call/' + conversation.token) |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
@ -131,7 +131,7 @@ export default { |
|
|
|
getWidgetItem() { |
|
|
|
return (conversation) => { |
|
|
|
return { |
|
|
|
targetUrl: generateUrl(`/call/${conversation.token}`), |
|
|
|
targetUrl: generateUrl(`call/${conversation.token}`), |
|
|
|
mainText: conversation.displayName, |
|
|
|
subText: this.getSubText(conversation), |
|
|
|
conversation, |
|
|
|
@ -146,7 +146,7 @@ export default { |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
fetchRooms() { |
|
|
|
axios.get(generateOcsUrl('/apps/spreed/api/v2', 2) + 'room').then((response) => { |
|
|
|
axios.get(generateOcsUrl('apps/spreed/api/v2', 2) + 'room').then((response) => { |
|
|
|
const rooms = response.data.ocs.data |
|
|
|
const importantRooms = rooms.filter((conversation) => { |
|
|
|
return conversation.hasCall || conversation.unreadMention |
|
|
|
|