From 7207fef0d46ac27b5bdbffbd0fe983686cb403f6 Mon Sep 17 00:00:00 2001 From: AIIrondev Date: Sat, 18 Jul 2026 12:18:12 +0200 Subject: [PATCH] Chnages to the Items being shown to the Library User --- Web/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Web/app.py b/Web/app.py index 5c31e18..8a61405 100755 --- a/Web/app.py +++ b/Web/app.py @@ -3212,7 +3212,7 @@ def api_library_items(): ausleihungen_db = db['ausleihungen'] query = { - 'ItemType': {'$in': ['book', 'cd', 'dvd', 'other', 'schoolbook', 'schulbuch', 'Buch', 'Schulbuch']}, + 'ItemType': {'$in': ['book', 'cd', 'dvd', 'schoolbook', 'schulbuch', 'Buch', 'Schulbuch']}, 'IsGroupedSubItem': {'$ne': True}, 'Deleted': {'$ne': True} }