From 516d7ddc83a5414214cac5111fc2701a37585865 Mon Sep 17 00:00:00 2001 From: Jordy Mendoza Date: Fri, 25 Aug 2023 15:02:10 -0600 Subject: [PATCH] -Fix apprise --- src/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.js b/src/util.js index bda3f78..e247807 100644 --- a/src/util.js +++ b/src/util.js @@ -135,4 +135,4 @@ export const notify = html => new Promise((resolve, reject) => { export const escapeHtml = unsafe => unsafe.replaceAll('&', '&').replaceAll('<', '<').replaceAll('>', '>').replaceAll('"', '"').replaceAll('\'', '''); -export const html_game_list = games => games.map(g => `- ${escapeHtml(g.title)} (${g.status})`).join('
'); +export const html_game_list = games => games.map(g => `- ${escapeHtml(g.title)} (${g.status})`).join('
');