Private
Public Access
1
0

Merge branch 'release/v23.6.5'

This commit is contained in:
2025-08-14 16:29:20 +02:00
2 changed files with 2 additions and 2 deletions

View File

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

Binary file not shown.