[[[0.6.4.0]]]

## 🧯Bug Fix

- 紧急修复 --trusted-reader-dinner 参数内部处理错误的问题
This commit is contained in:
A.C.Sukazyo Eyre 2022-05-10 23:43:19 +08:00
commit 30b10382d6
Signed by: Eyre_S
GPG Key ID: EFB47D98FE082FAD
3 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,6 @@
## Core ## Core
VERSION = 0.6.3.3 VERSION = 0.6.4.0
# dependencies # dependencies

View File

@ -4,6 +4,6 @@ package cc.sukazyo.cono.morny;
* the final field that will be updated by gradle automatically. * the final field that will be updated by gradle automatically.
*/ */
public class GradleProjectConfigures { public class GradleProjectConfigures {
public static final String VERSION = "0.6.3.3"; public static final String VERSION = "0.6.4.0";
public static final long COMPILE_TIMESTAMP = 1652195187089L; public static final long COMPILE_TIMESTAMP = 1652197330102L;
} }

View File

@ -125,6 +125,7 @@ public class ServerMain {
continue; continue;
} }
case "--trusted-reader-dinner" -> { case "--trusted-reader-dinner" -> {
i++;
trustedReadersOfDinner.add(Long.parseLong(args[i])); trustedReadersOfDinner.add(Long.parseLong(args[i]));
continue; continue;
} }