bugfix remote signal, serverside search,gui fixes

This commit is contained in:
David Brazda
2023-11-25 13:38:43 +01:00
parent 8963a26ed6
commit 04ca9adeac
7 changed files with 198 additions and 89 deletions

View File

@ -35,7 +35,7 @@ def concatenate_weekdays(weekday_filter):
weekday_strings = [weekdays[day] for day in weekday_filter]
# Concatenate the weekday strings
return '-'.join(weekday_strings)
return ','.join(weekday_strings)
def slice_dict_lists(d, last_item, to_tmstp = False):
"""Slices every list in the dictionary to the last last_item items.