Merge pull request #12196 from jdgleaver/label-sanitization-fix

Fix playlist label sanitisation
This commit is contained in:
Autechre 2021-03-26 13:37:41 +01:00 committed by GitHub
commit 23d22a1471
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -136,7 +136,7 @@ static bool left_exclusion(char *left,
strlcpy(comparison_string, strings[i], sizeof(comparison_string));
string_to_upper(comparison_string);
if (string_is_equal(exclusion_string,
if (string_starts_with(exclusion_string,
comparison_string))
return true;
}