mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
Fix user status not resetting correctly after a call
Only happens when the user navigated away and came back, so the heartbeat updates the status to "Online + In a call" After that resetting away from "Away + In a call" does not match anymore and the previous status sticks Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
0d3c19c6aa
commit
666a11bda3
1 changed files with 1 additions and 1 deletions
|
|
@ -294,7 +294,7 @@ class StatusService {
|
|||
|
||||
$userStatus->setStatus($status);
|
||||
$userStatus->setStatusTimestamp($this->timeFactory->getTime());
|
||||
$userStatus->setIsUserDefined(false);
|
||||
$userStatus->setIsUserDefined(true);
|
||||
$userStatus->setIsBackup(false);
|
||||
$userStatus->setMessageId($messageId);
|
||||
$userStatus->setCustomIcon(null);
|
||||
|
|
|
|||
Loading…
Reference in a new issue