mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-07 22:37:54 +00:00
fix build?
This commit is contained in:
parent
57ae3b5e49
commit
c755124900
4 changed files with 10 additions and 2 deletions
|
|
@ -18,7 +18,7 @@ public static class BuildInfoService
|
|||
FullVersion = data[0];
|
||||
Timestamp = data[1];
|
||||
|
||||
IsDev = data[2] == "";
|
||||
IsDev = data.Length < 3 || data[2] == "";
|
||||
|
||||
// show only short commit hash to users
|
||||
Version = FullVersion.Remove(7);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue