From dec417424a45ce0f3de4bd9281124460d6d413e5 Mon Sep 17 00:00:00 2001 From: zockol Date: Mon, 25 Sep 2023 10:15:34 +0200 Subject: [PATCH] double to single quotes again --- prime-gaming.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/prime-gaming.js b/prime-gaming.js index 10fee44..bd3fe38 100644 --- a/prime-gaming.js +++ b/prime-gaming.js @@ -399,13 +399,13 @@ try { console.error('--- Exception:'); console.error(error); // .toString()? if (error.message && process.exitCode != 130) - notify(`prime-gaming failed: ${error.message.split("\n")[0]}`); + notify(`prime-gaming failed: ${error.message.split('\n')[0]}`); } finally { await db.write(); // write out json db - if (notify_games.length) { - // list should only include claimed games + if (notify_games.length) { // list should only include claimed games + notify(`prime-gaming (${user}):
${html_game_list(notify_games)}`); } } -if (page.video()) console.log("Recorded video:", await page.video().path()); +if (page.video()) console.log('Recorded video:', await page.video().path()) await context.close(); \ No newline at end of file