Fixed beta updater on Windows

https://github.com/LinkStackOrg/LinkStack/issues/615
This commit is contained in:
Julian Prieber 2023-11-16 14:51:48 +01:00
parent a731303388
commit 72ccbd96e9
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@
$latestversion = trim(external_file_get_contents("https://version.linkstack.org/"));
if(env('JOIN_BETA') === true){
$fileUrl = 'https://update.linkstack.org/beta/'. $latestversion . '.zip';
$fileUrl = 'https://beta.linkstack.org/'. $latestversion . '.zip';
} else {
$fileUrl = 'https://update.linkstack.org/'. $latestversion . '.zip';
}