Fix trackma config error

- Tracker update wait time was a float instead of integer
This commit is contained in:
Sravan Balaji
2022-08-15 16:26:30 -04:00
parent 687aec8913
commit 1b39ef93cc
2 changed files with 2 additions and 2 deletions

View File

@@ -41,6 +41,6 @@
"tracker_type": "local", "tracker_type": "local",
"tracker_update_close": true, "tracker_update_close": true,
"tracker_update_prompt": true, "tracker_update_prompt": true,
"tracker_update_wait_s": 300.0, "tracker_update_wait_s": 300,
"use_hooks": true "use_hooks": true
} }

View File

@@ -7468,7 +7468,7 @@ level = "info"
"tracker_type": "local", "tracker_type": "local",
"tracker_update_close": true, "tracker_update_close": true,
"tracker_update_prompt": true, "tracker_update_prompt": true,
"tracker_update_wait_s": 300.0, "tracker_update_wait_s": 300,
"use_hooks": true "use_hooks": true
} }
#+END_SRC #+END_SRC