mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 06:08:46 -04:00
fix(userstatus): Also set the user status when the user has no status at all
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
e1b957e17b
commit
71add5561a
1 changed files with 1 additions and 1 deletions
|
|
@ -125,7 +125,7 @@ class StatusService {
|
|||
}
|
||||
|
||||
// Only update the status if it's neccesary otherwise we mess up the timestamp
|
||||
if($currentStatus !== null && $currentStatus->getMessageId() !== IUserStatus::MESSAGE_CALENDAR_BUSY) {
|
||||
if($currentStatus === null || $currentStatus->getMessageId() !== IUserStatus::MESSAGE_CALENDAR_BUSY) {
|
||||
// One event that fulfills all status conditions is enough
|
||||
// 1. Not an OOO event
|
||||
// 2. Current user status (that is not a calendar status) was not set after the start of this event
|
||||
|
|
|
|||
Loading…
Reference in a new issue