default last_filter to something sensible
authorGeoffrey Allott <geoffrey@allott.email>
Sat, 27 May 2023 21:01:45 +0000 (22:01 +0100)
committerGeoffrey Allott <geoffrey@allott.email>
Sat, 27 May 2023 21:01:45 +0000 (22:01 +0100)
site/modules/socket.js

index e6404494e55b99d3cf362c15bd6bf7a79022602e..b10cb318efc00fc5e00640755b6e21e11b92b033 100644 (file)
@@ -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;