mirror of
https://github.com/voideditor/void
synced 2026-05-23 17:38:23 +00:00
Merge pull request #515 from voideditor/model-selection
fix linux update message
This commit is contained in:
commit
81fd74d0b0
1 changed files with 1 additions and 1 deletions
|
|
@ -94,7 +94,7 @@ export class VoidMainUpdateService extends Disposable implements IVoidUpdateServ
|
|||
const data = await response.json();
|
||||
const version = data.tag_name;
|
||||
|
||||
const myVersion = `${this._productService.version}.${this._productService.release}`
|
||||
const myVersion = this._productService.version
|
||||
const latestVersion = version
|
||||
|
||||
const isUpToDate = myVersion === latestVersion // only makes sense if response.ok
|
||||
|
|
|
|||
Loading…
Reference in a new issue