Skip to content

Commit 58d6be2

Browse files
committed
Fixed version detection not working
1 parent 4d1499b commit 58d6be2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/update.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
$Vgit = file_get_contents("https://julianprieber.github.io/littlelink-custom/version.json");
88
99
// Requests current version from the local version file and sets it as variable
10-
$Vlocal = 'v' . file_get_contents(base_path("version.json"));
10+
$Vlocal = file_get_contents(base_path("version.json"));
1111
?>
1212
@if(auth()->user()->role == 'admin' and $Vgit > $Vlocal or env('JOIN_BETA') === true)
1313

0 commit comments

Comments
 (0)