diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 414693f..231e915 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -92,7 +92,9 @@ "plugins": { "updater": { "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDIyNDFENEZGNjFDNTBGOEYKUldTUEQ4VmgvOVJCSWhVZmw0enhmcW1kWFk3TS9mMzBDRjVEZWdxKzQ5ZmRhTlYvT2gvdFNMbE8K", - "endpoints": ["https://github.com/FTCHD/rclone-ui/releases/latest/download/latest.json"] + "endpoints": [ + "https://github.com/rclone-ui/rclone-ui/releases/latest/download/latest.json" + ] }, "fs": { "requireLiteralLeadingDot": false diff --git a/src/pages/Settings.tsx b/src/pages/Settings.tsx index 7680ccf..407f2c0 100644 --- a/src/pages/Settings.tsx +++ b/src/pages/Settings.tsx @@ -253,7 +253,10 @@ function GeneralSection() { setUpdateButtonText('Checking...') let receivedUpdate: Update | null = null try { - receivedUpdate = await check() + receivedUpdate = await check({ + allowDowngrades: true, + timeout: 30000, + }) } catch (e) { console.error(e) setUpdateButtonText('Failed to check')