Skip to content

Commit

Permalink
add missing bracket to coroutine name
Browse files Browse the repository at this point in the history
  • Loading branch information
lost-illusi0n committed Oct 17, 2021
1 parent a3c0b76 commit 2e84c72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion voice/src/main/kotlin/VoiceConnection.kt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class VoiceConnection(
val frameInterceptorFactory: (FrameInterceptorContext) -> FrameInterceptor,
) {
val scope: CoroutineScope =
CoroutineScope(SupervisorJob() + CoroutineName("kord-voice-connection[${data.guildId.value}"))
CoroutineScope(SupervisorJob() + CoroutineName("kord-voice-connection[${data.guildId.value}]"))

init {
with(scope) {
Expand Down

0 comments on commit 2e84c72

Please sign in to comment.