patch for the Secret Getting that is not functioning

This commit is contained in:
2026-07-28 21:47:37 +02:00
parent 2aee36cc92
commit 38320f488a
2 changed files with 11 additions and 11 deletions
+3 -3
View File
@@ -1824,9 +1824,9 @@ def _excel_list(value):
seen = set()
unique = []
for entry in cleaned:
if entry not in seen:
if str(entry) not in seen:
unique.append(entry)
seen.add(entry)
seen.add(str(entry))
return unique
@@ -6753,7 +6753,7 @@ def update_group():
client.close()
app.logger.debug("Success When Updating the Item")
flash("Objecte wurden erfolgreich Bearbeitet", "success")
flash("Objekte wurden erfolgreich Bearbeitet", "success")
return jsonify({'success': True, 'message': 'Gruppe und individuelle Codes aktualisiert'})
except Exception as e: