Something looked wrong...

This commit is contained in:
Redned 2023-06-04 22:43:56 -05:00 committed by GitHub
parent 23cdde5cc6
commit b3a66dbe29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ public final class SoundUtils {
private static String trim(String identifier) {
// Drop any namespace if applicable
if (identifier.contains(":") {
if (identifier.contains(":")) {
return identifier.split(":")[1];
}
return identifier;