diff --git a/www/js/fpp.js b/www/js/fpp.js index de32143c2..0a06a85a2 100644 --- a/www/js/fpp.js +++ b/www/js/fpp.js @@ -1761,7 +1761,7 @@ function AddPlaylistEntry(mode) { } pe[a.name] = arr; } else if ((a.type == 'string') || (a.type == 'file')) { - pe[a.name] = $('#playlistEntryOptions').find('.arg_' + a.name).val(); + pe[a.name] = $('#playlistEntryOptions').find('.arg_' + a.name).val().replace(/<\/?[^>]+(>|$)/g, ""); } else { pe[a.name] = $('#playlistEntryOptions').find('.arg_' + a.name).html(); }