mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-08-09 13:55:01 +02:00
Add the ability to set a proxy for outgoing requests - Closes #252
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user