1
0
mirror of https://github.com/aquatix/digimarks.git synced 2025-12-07 00:15:10 +01:00

Fix for property after refactoring the model

This commit is contained in:
2025-05-13 22:18:41 +02:00
parent d8c8d87568
commit 343ac01086

View File

@@ -555,7 +555,7 @@ def list_tags_for_user(
).all() ).all()
tags = [] tags = []
for bookmark in bookmarks: for bookmark in bookmarks:
tags += bookmark.tags_list tags += bookmark.tag_list
return clean_tags(tags) return clean_tags(tags)