Slkight fix for the Items types

This commit is contained in:
2026-06-30 10:43:09 +02:00
parent d84466a3cc
commit e7f4b1ce9d
+2 -4
View File
@@ -5227,7 +5227,7 @@ def upload_item():
return redirect(url_for(success_redirect_endpoint)) return redirect(url_for(success_redirect_endpoint))
item_isbn = '' item_isbn = ''
item_type = 'general' item_type = 'other'
if cfg.MODULES.is_enabled('library') and isbn_raw: if cfg.MODULES.is_enabled('library') and isbn_raw:
normalized_isbn = normalize_and_validate_isbn(isbn_raw) normalized_isbn = normalize_and_validate_isbn(isbn_raw)
if normalized_isbn: if normalized_isbn:
@@ -5235,8 +5235,7 @@ def upload_item():
item_type = 'book' item_type = 'book'
else: else:
item_isbn = isbn_raw item_isbn = isbn_raw
if upload_mode == 'library':
item_type = 'book'
if item_type_input != "": if item_type_input != "":
item_type = item_type_input item_type = item_type_input
@@ -5253,7 +5252,6 @@ def upload_item():
return jsonify({'success': False, 'message': error_msg}), 400 return jsonify({'success': False, 'message': error_msg}), 400
flash(error_msg, 'error') flash(error_msg, 'error')
return redirect(url_for('library_admin')) return redirect(url_for('library_admin'))
item_type = 'book'
# Only check for images if not duplicating and no duplicate images provided and no book cover # Only check for images if not duplicating and no duplicate images provided and no book cover
# For library mode, skip this check as images come only from ISBN fetch # For library mode, skip this check as images come only from ISBN fetch