修复由于调用错误导致 "user not found" 在内部抛出导致外部无响应的问题 #38

This commit is contained in:
A.C.Sukazyo Eyre 2022-06-21 21:09:02 +08:00
parent ae6bf2a560
commit 58038e8a1f
Signed by: Eyre_S
GPG Key ID: EFB47D98FE082FAD
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
## Core ## Core
VERSION = 0.7.1.3 VERSION = 0.7.2.0
CODENAME = fuzhou CODENAME = fuzhou

View File

@ -4,7 +4,7 @@ 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.7.1.3"; public static final String VERSION = "0.7.2.0";
public static final String CODENAME = "fuzhou"; public static final String CODENAME = "fuzhou";
public static final long COMPILE_TIMESTAMP = 1654590942119L; public static final long COMPILE_TIMESTAMP = 1655816387446L;
} }

View File

@ -47,7 +47,7 @@ public class GetUsernameAndId implements ITelegramCommand {
} }
} }
final GetChatMemberResponse response = MornyCoeur.extra().exec( final GetChatMemberResponse response = MornyCoeur.getAccount().execute(
new GetChatMember(event.message().chat().id(), userId) new GetChatMember(event.message().chat().id(), userId)
); );