Skip to content

Commit

Permalink
Merge pull request #48014 from nextcloud/fix/tags/boolean-user-has-tags
Browse files Browse the repository at this point in the history
  • Loading branch information
provokateurin authored Sep 15, 2024
2 parents a643cb2 + 9b82bfd commit 77de180
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/private/Tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,7 @@ public function getIdsForTag($tag) {
* @param string $user The user whose tags are to be checked.
*/
public function userHasTag(string $name, string $user): bool {
$key = $this->array_searchi($name, $this->getTagsForUser($user));
return ($key !== false) ? $this->tags[$key]->getId() : false;
return $this->array_searchi($name, $this->getTagsForUser($user)) !== false;
}

/**
Expand Down

0 comments on commit 77de180

Please sign in to comment.