From: Geoffrey Allott Date: Sat, 27 May 2023 21:01:45 +0000 (+0100) Subject: default last_filter to something sensible X-Git-Url: https://git.pointlesshacks.com/?a=commitdiff_plain;h=4bdbe3c4e7ba512f553981badf38c8fa4700f10b;p=pokerwave.git default last_filter to something sensible --- diff --git a/site/modules/socket.js b/site/modules/socket.js index e640449..b10cb31 100644 --- a/site/modules/socket.js +++ b/site/modules/socket.js @@ -26,7 +26,7 @@ export class Socket { this.socket.onmessage = (msg) => this.onmessage(msg); this.socket.onclose = () => this.onclose(); this.state = "Connecting"; - this.last_filter = ""; + this.last_filter = "created_in_last: 2:00:00"; this.scheduled_actions = []; this.schedule_timeout = null;