Private
Public Access
1
0

fixing safari

This commit is contained in:
2025-08-13 19:59:44 +02:00
parent 99328dc4a7
commit 7e37f192af
4 changed files with 9 additions and 2 deletions

View File

@@ -344,6 +344,8 @@ class IntervalsIntegration(SyncIntegration):
for w in ws:
try:
w.name = data['name']
if length(w.name) >= 350:
w.name = w.name[:350]
except KeyError:
pass
try:
@@ -370,7 +372,7 @@ class IntervalsIntegration(SyncIntegration):
w.is_commute = False
except KeyError:
w.is_commute = False
w.save()
try: