From 3f33799a107bf88aa8378fb641322b9d128fcc71 Mon Sep 17 00:00:00 2001 From: rstular Date: Thu, 14 May 2020 11:22:29 +0200 Subject: Bug fix ("|" isn't valid in a selector) --- js/messaging.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'js/messaging.js') diff --git a/js/messaging.js b/js/messaging.js index 187df17..44c279e 100644 --- a/js/messaging.js +++ b/js/messaging.js @@ -181,7 +181,7 @@ async function loadMsg(id) { "u": username, "p": password, "m": "fetchsporocilo", - "a": id + "a": id.replace("_", "|") }, dataType: "json", cache: false, @@ -224,7 +224,7 @@ async function deleteMsg(id) { "u": username, "p": password, "m": "izbrisisporocilo", - "a": id + "a": id.replace("_", "|") }, dataType: "json", cache: false, @@ -281,9 +281,9 @@ function displayMessage(id, data) { ${datatodecrypt} ` - $(`#msg_body-${id}`).html(msgcontent); + $(`#msg_body-${id.replace("|", "_")}`).html(msgcontent); } else { - $(`#msg_body-${id}`).html(filterXSS(data["telo"])); + $(`#msg_body-${id.replace("|", "_")}`).html(filterXSS(data["telo"])); } } @@ -300,7 +300,7 @@ function displayData() { ${filterXSS(element["id"])} -

+