Private
Public Access
1
0

fixing error

This commit is contained in:
2025-08-14 16:29:04 +02:00
parent 7c0a859fb7
commit 26d703dbd3
2 changed files with 2 additions and 2 deletions

View File

@@ -344,8 +344,8 @@ class IntervalsIntegration(SyncIntegration):
for w in ws: for w in ws:
try: try:
w.name = data['name'] w.name = data['name']
if length(w.name) >= 350: if len(data['name']) >= 350:
w.name = w.name[:350] w.name = data['name'][:350]
except KeyError: except KeyError:
pass pass
try: try:

Binary file not shown.