Add the ability to set a proxy for outgoing requests - Closes #252

This commit is contained in:
Bubka
2023-12-13 16:49:35 +01:00
parent 15c31c3341
commit e503826012
9 changed files with 41 additions and 15 deletions

View File

@ -13,7 +13,7 @@
await systemService.getLastRelease({returnError: true})
.then(response => {
appSettings.latestRelease = response.data.newRelease
isUpToDate.value = response.data.newRelease === false
isUpToDate.value = response.data.newRelease === null ? null : response.data.newRelease === false
})
.catch(() => {
isUpToDate.value = null