Worlds biggest commit

forgot to make it a separate goroutine
This commit is contained in:
da
2017-01-19 23:44:58 +01:00
parent f0cff35bea
commit 1e50475a46
+1 -1
View File
@@ -78,7 +78,7 @@ func handlePlaySound(w http.ResponseWriter, r *http.Request) {
} }
} }
if user != nil && guild != nil && sound != nil && soundCollection != nil { if user != nil && guild != nil && sound != nil && soundCollection != nil {
enqueuePlay(user, guild, soundCollection, sound) go enqueuePlay(user, guild, soundCollection, sound)
} }
} }