Fix user permissions restricted by tag #421

This commit is contained in:
advplyr 2022-04-21 19:29:15 -05:00
parent 6f7d2ef4cd
commit 2276228531
4 changed files with 15 additions and 7 deletions

View file

@ -308,7 +308,8 @@ class User {
}
checkCanAccessLibraryItemWithTags(tags) {
if (this.permissions.accessAllTags || !tags || !tags.length) return true
if (!tags || !tags.length) return false
if (this.permissions.accessAllTags) return true
return this.itemTagsAccessible.some(tag => tags.includes(tag))
}