diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-08-14 18:34:26 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-08-14 18:34:26 +0300 |
| commit | 25f416719bb11e87e60484b874f606cc46edb0ad (patch) | |
| tree | 3e9cbc55cee3b4be646f015b1938c832f06c24f3 /js | |
| parent | e8db412dfcb78601d2ea545ad3e43a68e8b2d1e7 (diff) | |
bump amount of retries when trying to auto-switch theme
Diffstat (limited to 'js')
| -rw-r--r-- | js/App.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -172,7 +172,7 @@ const App = { console.log("nightModeChanged: night mode changed to", is_night, "retry", retry); if (link) { - if (retry < 5) { + if (retry < 15) { window.clearTimeout(this._night_mode_retry_timeout); this._night_mode_retry_timeout = window.setTimeout( |