Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Fix ktlint errors. #448

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/kotlin/org/jitsi/jibri/selenium/JibriSelenium.kt
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ data class CallParams(
override fun toString(): String {
return if (passcode.isNullOrEmpty()) {
"CallParams(callUrlInfo=$callUrlInfo, email='$email', passcode=$passcode" +
", callStatsUsernameOverride=$callStatsUsernameOverride, displayName=$displayName)"
", callStatsUsernameOverride=$callStatsUsernameOverride, displayName=$displayName)"
} else {
"CallParams(callUrlInfo=$callUrlInfo, email='$email', passcode=*****" +
", callStatsUsernameOverride=$callStatsUsernameOverride, displayName=$displayName)"
", callStatsUsernameOverride=$callStatsUsernameOverride, displayName=$displayName)"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ class FileRecordingJibriService(
registerSubComponent(FfmpegCapturer.COMPONENT_ID, this.capturer)

jibriServiceFinalizer = JibriServiceFinalizeCommandRunner(
processFactory, listOf(
processFactory,
listOf(
finalizeScriptPath,
sessionRecordingDirectory.toString()
)
Expand Down Expand Up @@ -202,7 +203,7 @@ class FileRecordingJibriService(
} catch (t: Throwable) {
logger.error(
"An error occurred while trying to get the participants list, proceeding with " +
"an empty participants list",
"an empty participants list",
t
)
listOf<Map<String, Any>>()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ class PjsuaClient(
) {
command.add(
"--id=${pjsuaClientParams.sipClientParams.displayName} " +
"<$sipScheme:${pjsuaClientParams.sipClientParams.userName}>"
"<$sipScheme:${pjsuaClientParams.sipClientParams.userName}>"
)
command.add(
"--registrar=$sipScheme:${
pjsuaClientParams.sipClientParams.userName.substringAfter('@')
pjsuaClientParams.sipClientParams.userName.substringAfter('@')
}"
)
command.add("--realm=*")
Expand All @@ -109,7 +109,7 @@ class PjsuaClient(
if (pjsuaClientParams.sipClientParams.userName != null) {
command.add(
"--proxy=$sipScheme:${pjsuaClientParams.sipClientParams.userName.substringAfter('@')};" +
"transport=tcp;hide"
"transport=tcp;hide"
)
}

Expand Down