Yuxuan Kang

Results 3 comments of Yuxuan Kang

Also having this problem. Looks like reconnecting ws will mark user as active again, so I'm using an ugly hack to keep myself as active: Set a timer to reconnect...

[Slack API doc](https://api.slack.com/docs/presence-and-status) says it's 30 minutes. Anyway, this feels like a problem in Slack API, unless emacs-slack didn't actually send the request (which I suppose is unlikely the case).

It's something like this: ``` (run-with-timer 0 (* 25 60) (lambda () (slack-ws--reconnect (oref slack-current-team :id) t) (slack-im-list-update))) ``` Maybe the last `slack-im-list-update` is not necessary though, I just kept...