diff --git a/changelog.txt b/changelog.txt index c7ce11e..d580077 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,7 @@ [B]WIMM Change log[/B] 4.1.13 + - Allow semi-colon (;) to be used as a list delimiter 4.1.12 - Massive clean up of the music section diff --git a/resources/js/app/common/xbmc.js b/resources/js/app/common/xbmc.js index 77d7972..75b7453 100644 --- a/resources/js/app/common/xbmc.js +++ b/resources/js/app/common/xbmc.js @@ -99,7 +99,7 @@ function updateXBMCTables(form, recordType, recordId) { case 'mood': case 'style': case 'artist': - params[f.name] = XWMM.util.convertListToArray(f.getValue(), /[,\/\|]+/); // Split list separated with , / or |. + params[f.name] = XWMM.util.convertListToArray(f.getValue(), /[,\/\|;]+/); // Split list separated with , / or |. break; default: