patch for the Secret Getting that is not functioning
This commit is contained in:
+3
-3
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user