diff --git a/openlp/plugins/remotes/html/openlp.js b/openlp/plugins/remotes/html/openlp.js index e1a425860..470185a44 100644 --- a/openlp/plugins/remotes/html/openlp.js +++ b/openlp/plugins/remotes/html/openlp.js @@ -245,6 +245,9 @@ window.OpenLP = { } else { $.each(data.results.items, function (idx, value) { + if (typeof value[0] !== "number"){ + value[0] = OpenLP.escapeString(value[0]) + } ul.append($("
  • ").append($("").attr("href", "#options") .attr("data-rel", "dialog").attr("value", value[0]) .click(OpenLP.showOptions).text(value[1])));