Skip to content

Commit

Permalink
Merge branch 'fixes/list-separators'
Browse files Browse the repository at this point in the history
  • Loading branch information
nomad2k committed Dec 8, 2014
2 parents 6bb9f4b + ef93088 commit b261c6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion resources/js/app/common/xbmc.js
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit b261c6e

Please sign in to comment.