Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-08-23 17:12:20 +0300
committerJoas Schilling <coding@schilljs.com>2021-08-23 17:30:02 +0300
commitf700cbc36bf8192843126af02bdf5ff38b639c42 (patch)
treeaf8c191cbf8753f0ca012859970240ebbb60b906 /src/PublicShareSidebar.vue
parenta58d76c3ae7489cd4dec063d2bd36ca0eb69c3cc (diff)
Fix event names to kebap-case
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/PublicShareSidebar.vue')
-rw-r--r--src/PublicShareSidebar.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/PublicShareSidebar.vue b/src/PublicShareSidebar.vue
index 490e9a083..4d0e0e0cc 100644
--- a/src/PublicShareSidebar.vue
+++ b/src/PublicShareSidebar.vue
@@ -155,10 +155,10 @@ export default {
// "inCall" flag (which is locally updated when joining and leaving
// a call) is currently used.
if (loadState('spreed', 'signaling_mode') !== 'internal') {
- EventBus.$on('shouldRefreshConversations', this.fetchCurrentConversation)
- EventBus.$on('Signaling::participantListChanged', this.fetchCurrentConversation)
+ EventBus.$on('should-refresh-conversations', this.fetchCurrentConversation)
+ EventBus.$on('signaling-participant-list-changed', this.fetchCurrentConversation)
} else {
- // The "shouldRefreshConversations" event is triggered only when
+ // The "should-refresh-conversations" event is triggered only when
// the external signaling server is used; when the internal
// signaling server is used periodic polling has to be used
// instead.