Skip to content

Commit

Permalink
Merge pull request #31543 from nextcloud/backport/31539/stable23
Browse files Browse the repository at this point in the history
[stable23] Fix user status not resetting correctly after a call
  • Loading branch information
nickvergessen authored Mar 11, 2022
2 parents 0d3c19c + 666a11b commit f8c7827
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/user_status/lib/Service/StatusService.php
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ public function setUserStatus(string $userId,

$userStatus->setStatus($status);
$userStatus->setStatusTimestamp($this->timeFactory->getTime());
$userStatus->setIsUserDefined(false);
$userStatus->setIsUserDefined(true);
$userStatus->setIsBackup(false);
$userStatus->setMessageId($messageId);
$userStatus->setCustomIcon(null);
Expand Down

0 comments on commit f8c7827

Please sign in to comment.