File tree 3 files changed +8
-7
lines changed
src/main/kotlin/org/jitsi/jibri
3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -80,10 +80,10 @@ data class CallParams(
80
80
override fun toString (): String {
81
81
return if (passcode.isNullOrEmpty()) {
82
82
" CallParams(callUrlInfo=$callUrlInfo , email='$email ', passcode=$passcode " +
83
- " , callStatsUsernameOverride=$callStatsUsernameOverride , displayName=$displayName )"
83
+ " , callStatsUsernameOverride=$callStatsUsernameOverride , displayName=$displayName )"
84
84
} else {
85
85
" CallParams(callUrlInfo=$callUrlInfo , email='$email ', passcode=*****" +
86
- " , callStatsUsernameOverride=$callStatsUsernameOverride , displayName=$displayName )"
86
+ " , callStatsUsernameOverride=$callStatsUsernameOverride , displayName=$displayName )"
87
87
}
88
88
}
89
89
}
Original file line number Diff line number Diff line change @@ -141,7 +141,8 @@ class FileRecordingJibriService(
141
141
registerSubComponent(FfmpegCapturer .COMPONENT_ID , this .capturer)
142
142
143
143
jibriServiceFinalizer = JibriServiceFinalizeCommandRunner (
144
- processFactory, listOf (
144
+ processFactory,
145
+ listOf (
145
146
finalizeScriptPath,
146
147
sessionRecordingDirectory.toString()
147
148
)
@@ -202,7 +203,7 @@ class FileRecordingJibriService(
202
203
} catch (t: Throwable ) {
203
204
logger.error(
204
205
" An error occurred while trying to get the participants list, proceeding with " +
205
- " an empty participants list" ,
206
+ " an empty participants list" ,
206
207
t
207
208
)
208
209
listOf<Map <String , Any >>()
Original file line number Diff line number Diff line change @@ -86,11 +86,11 @@ class PjsuaClient(
86
86
) {
87
87
command.add(
88
88
" --id=${pjsuaClientParams.sipClientParams.displayName} " +
89
- " <$sipScheme :${pjsuaClientParams.sipClientParams.userName} >"
89
+ " <$sipScheme :${pjsuaClientParams.sipClientParams.userName} >"
90
90
)
91
91
command.add(
92
92
" --registrar=$sipScheme :${
93
- pjsuaClientParams.sipClientParams.userName.substringAfter(' @' )
93
+ pjsuaClientParams.sipClientParams.userName.substringAfter(' @' )
94
94
} "
95
95
)
96
96
command.add(" --realm=*" )
@@ -109,7 +109,7 @@ class PjsuaClient(
109
109
if (pjsuaClientParams.sipClientParams.userName != null ) {
110
110
command.add(
111
111
" --proxy=$sipScheme :${pjsuaClientParams.sipClientParams.userName.substringAfter(' @' )} ;" +
112
- " transport=tcp;hide"
112
+ " transport=tcp;hide"
113
113
)
114
114
}
115
115
You can’t perform that action at this time.
0 commit comments