double to single quotes again
This commit is contained in:
parent
c6f5555c07
commit
dec417424a
1 changed files with 4 additions and 4 deletions
|
|
@ -399,13 +399,13 @@ try {
|
||||||
console.error('--- Exception:');
|
console.error('--- Exception:');
|
||||||
console.error(error); // .toString()?
|
console.error(error); // .toString()?
|
||||||
if (error.message && process.exitCode != 130)
|
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 {
|
} finally {
|
||||||
await db.write(); // write out json db
|
await db.write(); // write out json db
|
||||||
if (notify_games.length) {
|
if (notify_games.length) { // list should only include claimed games
|
||||||
// list should only include claimed games
|
|
||||||
notify(`prime-gaming (${user}):<br>${html_game_list(notify_games)}`);
|
notify(`prime-gaming (${user}):<br>${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();
|
await context.close();
|
||||||
Loading…
Add table
Add a link
Reference in a new issue