summaryrefslogtreecommitdiff
path: root/Pages/Component
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2023-09-28 03:14:35 +1000
committerJake Mannens <jake@asger.xyz>2023-09-28 03:14:35 +1000
commitbedcb6b176130fc2c6bd4657c8af4d407b64c970 (patch)
tree974a14bb03913e3a8083a633d9de61742c86e0a1 /Pages/Component
parentbc82b2dc2f7405c0fd4d179830412ea8209137b1 (diff)
Updated DB schema and configured ACLs to use SIDs
Diffstat (limited to 'Pages/Component')
-rw-r--r--Pages/Component/TagSelectDialog.razor2
1 files changed, 1 insertions, 1 deletions
diff --git a/Pages/Component/TagSelectDialog.razor b/Pages/Component/TagSelectDialog.razor
index 7be5c43..fadebfa 100644
--- a/Pages/Component/TagSelectDialog.razor
+++ b/Pages/Component/TagSelectDialog.razor
@@ -82,7 +82,7 @@
int[] nsfwTags = Array.Empty<int>();
if(!userService.ShowNsfw)
- nsfwTags = tagService.TagsThatImply(HBContext.NsfwTag)
+ nsfwTags = tagService.TagsThatImply(HBObjectGuid.NsfwTag)
.Select(td => td.ObjectId)
.ToArray();