Compare commits

..

3 Commits

Author SHA1 Message Date
jyio 73cfbd5bbd Fix persistent schedule view filter 2023-05-01 18:06:19 -04:00
jyio c53a9654b5 Improved unmarked tag detection 2023-05-01 18:06:19 -04:00
jyio ec841b9591 Fix broken connection detection; disallow stale XWB_IM_HERE 2023-05-01 18:04:53 -04:00
+1 -1
View File
@@ -339,7 +339,7 @@ export function Client(cid, secret) {
if(localstate.practitioner) delete localstate.practitioner;
};
this.XWB_IM_HERE = unwrapped(logged(() => this.call({ method: 'XWB_IM_HERE', ttl: 30 }), 'XWB_IM_HERE'));
this.XWB_IM_HERE = unwrapped(logged(() => this.call({ method: 'XWB_IM_HERE', ttl: 30, stale: false }), 'XWB_IM_HERE'));
this.XUS_INTRO_MSG = memoized(unwrapped(logged(() => this.callctx(['XUCOMMAND'], 'XUS_INTRO_MSG'), 'XUS_INTRO_MSG')));
this.XWB_GET_BROKER_INFO = memoized(unwrapped(logged(() => this.callctx(['XUCOMMAND'], 'XWB_GET_BROKER_INFO'), 'XWB_GET_BROKER_INFO')));