Private
Public Access
1
0

Merge branch 'release/v23.4.1'

This commit is contained in:
2025-04-14 18:11:23 +02:00
2 changed files with 4 additions and 1 deletions

View File

@@ -891,7 +891,10 @@ class IntervalsIntegration(SyncIntegration):
continue continue
ps.name = data['name'] ps.name = data['name']
try: try:
ps.comment = data['description'] if data['description'] is not None:
ps.comment = data['description']
else:
ps.comment = ''
except KeyError: except KeyError:
ps.comment = ' ' ps.comment = ' '
ps.startdate = arrow.get(data['start_date_local']).datetime ps.startdate = arrow.get(data['start_date_local']).datetime

Binary file not shown.