mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 01:15:05 +00:00
Fix saving config.ini after restart and startup
make save_config fallback to single threaded save use
This commit is contained in:
parent
689296c4ac
commit
2dcf1854eb
2 changed files with 9 additions and 2 deletions
|
@ -1,4 +1,9 @@
|
||||||
### 3.32.5 (2024-08-12 00:15:00 UTC)
|
### 3.32.6 (2024-08-12 17:10:00 UTC)
|
||||||
|
|
||||||
|
* Fix saving config.ini after restart and startup
|
||||||
|
|
||||||
|
|
||||||
|
### 3.32.5 (2024-08-12 00:15:00 UTC)
|
||||||
|
|
||||||
* Fix to create initial config.ini when one doesn't exist
|
* Fix to create initial config.ini when one doesn't exist
|
||||||
|
|
||||||
|
|
|
@ -1897,7 +1897,9 @@ def save_config(force=False):
|
||||||
:param force: force save config even if unchanged
|
:param force: force save config even if unchanged
|
||||||
"""
|
"""
|
||||||
global config_events
|
global config_events
|
||||||
config_events.put(force)
|
|
||||||
|
# use queue if it's available, otherwise, call save_config directly
|
||||||
|
hasattr(config_events, 'put') and config_events.put(force) or _save_config(force)
|
||||||
|
|
||||||
|
|
||||||
def _save_config(force=False, **kwargs):
|
def _save_config(force=False, **kwargs):
|
||||||
|
|
Loading…
Reference in a new issue