aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorAndy Scherzinger <info@andy-scherzinger.de>2024-08-08 10:00:20 +0200
committerGitHub <noreply@github.com>2024-08-08 10:00:20 +0200
commit2777cf90e333bf57491784812148c6b3db437c85 (patch)
tree790a3428565139d4090dcafaf2025adf58e7643b /apps
parent5e5a51a27791ae65e89b6e96242262e62c76f148 (diff)
parent60924a6a27f802a12327693faea4c58a66e013e4 (diff)
downloadnextcloud-server-2777cf90e333bf57491784812148c6b3db437c85.tar.gz
nextcloud-server-2777cf90e333bf57491784812148c6b3db437c85.zip
Merge pull request #47120 from nextcloud/fix/systemtags
fix(systemtags): Correctly load tagged files in "tags"-files-view
Diffstat (limited to 'apps')
-rw-r--r--apps/systemtags/src/services/systemtags.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/systemtags/src/services/systemtags.ts b/apps/systemtags/src/services/systemtags.ts
index f29bb83984b..47cf9194d8b 100644
--- a/apps/systemtags/src/services/systemtags.ts
+++ b/apps/systemtags/src/services/systemtags.ts
@@ -57,7 +57,7 @@ export const getContents = async (path = '/'): Promise<ContentsWithRoot> => {
}
}
- const tagId = parseInt(path.split('/', 2)[0])
+ const tagId = parseInt(path.split('/', 2)[1])
const tag = tagsCache.find(tag => tag.id === tagId)
if (!tag) {