anki: fix autoSyncMediaMinutes and networkTimeout not being applied

This commit is contained in:
sollniss 2026-01-26 22:44:26 +09:00 committed by Austin Horstman
parent 384786dc70
commit a10c1e8f5a

View file

@ -134,11 +134,11 @@ let
media_sync_minutes_str: str = "${toString cfg.sync.autoSyncMediaMinutes}"
if media_sync_minutes_str:
profile_manager.set_periodic_sync_media_minutes = int(media_sync_minutes_str)
profile_manager.set_periodic_sync_media_minutes(int(media_sync_minutes_str))
network_timeout_str: str = "${toString cfg.sync.networkTimeout}"
if network_timeout_str:
profile_manager.set_network_timeout = int(network_timeout_str)
profile_manager.set_network_timeout(int(network_timeout_str))
profile_manager.save()
'';