summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2021-06-07 14:53:22 +0200
committerVincent Petry <vincent@nextcloud.com>2021-06-07 14:53:22 +0200
commitbff15a1c9e7e2dbcafacae95910054e0ca033d6f (patch)
tree39750a660b52a267f2224bcc3de3dca7d9d6772b
parent7fee2441d93ab0d16503f50c2289c6c7d01e1e19 (diff)
Fix casing of exported WebRTC function
In webrtc/index.js we import the function as WebRtc. The name of the function at export time is semantically irrelevant but having it correct might help when grepping. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
-rw-r--r--src/utils/webrtc/webrtc.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/webrtc/webrtc.js b/src/utils/webrtc/webrtc.js
index b339b7171..4c077cca8 100644
--- a/src/utils/webrtc/webrtc.js
+++ b/src/utils/webrtc/webrtc.js
@@ -420,7 +420,7 @@ function usersInCallChanged(signaling, users) {
}
}
-export default function initWebRTC(signaling, _callParticipantCollection, _localCallParticipantModel) {
+export default function initWebRtc(signaling, _callParticipantCollection, _localCallParticipantModel) {
callParticipantCollection = _callParticipantCollection
localCallParticipantModel = _localCallParticipantModel