mirror of
https://github.com/voideditor/void
synced 2026-05-22 17:08:25 +00:00
Updated config to point at voidVersion instead of the base vscode version
This commit is contained in:
parent
c58210ba80
commit
103dd68b3c
1 changed files with 4 additions and 2 deletions
|
|
@ -31,12 +31,14 @@ export async function getVSCodeServerConfig(): Promise<IServerConfig> {
|
|||
const productJson = await getVSCodeProductJson();
|
||||
|
||||
return {
|
||||
version: vscode.version.replace('-insider', ''),
|
||||
// version: vscode.version.replace('-insider', ''),
|
||||
commit: productJson.commit,
|
||||
quality: productJson.quality,
|
||||
release: productJson.release,
|
||||
serverApplicationName: productJson.serverApplicationName,
|
||||
serverDataFolderName: productJson.serverDataFolderName,
|
||||
serverDownloadUrlTemplate: productJson.serverDownloadUrlTemplate
|
||||
serverDownloadUrlTemplate: productJson.serverDownloadUrlTemplate,
|
||||
// Void changed this
|
||||
version: productJson.voidVersion
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue