Skip to content

Commit 4c1a2f8

Browse files
hristoterezovbbaldino
authored andcommittedMay 23, 2019
feat(analytics): disable (#197)
1 parent 4caf78c commit 4c1a2f8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎src/main/kotlin/org/jitsi/jibri/selenium/JibriSelenium.kt

+4-2
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,17 @@ data class JibriSeleniumOptions(
7878
val SIP_GW_URL_OPTIONS = listOf(
7979
"config.iAmRecorder=true",
8080
"config.iAmSipGateway=true",
81-
"config.ignoreStartMuted=true"
81+
"config.ignoreStartMuted=true",
82+
"config.analytics.disabled=true"
8283
)
8384

8485
val RECORDING_URL_OPTIONS = listOf(
8586
"config.iAmRecorder=true",
8687
"config.externalConnectUrl=null",
8788
"config.startWithAudioMuted=true",
8889
"config.startWithVideoMuted=true",
89-
"interfaceConfig.APP_NAME=\"Jibri\""
90+
"interfaceConfig.APP_NAME=\"Jibri\"",
91+
"config.analytics.disabled=true"
9092
)
9193

9294
/**

0 commit comments

Comments
 (0)
Please sign in to comment.