Skip to content

Commit 15d573b

Browse files
committed
bugfix
1 parent edc4f3d commit 15d573b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ASFTradeExtension/ASFTradeExtension.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ public Task OnBotInit(Bot bot)
261261
"SETEXCLUDELIST" or
262262
"SETEXCLUDE" or
263263
"SE" when access >= EAccess.Master =>
264-
Task.FromResult(Command.ResponseSetExcludeList(null)),
264+
Command.ResponseSetExcludeList(null),
265265

266266
//获取卡牌信息
267267
"FULLSETLIST" or
@@ -307,7 +307,7 @@ public Task OnBotInit(Bot bot)
307307
"SETEXCLUDELIST" or
308308
"SETEXCLUDE" or
309309
"SE" when access >= EAccess.Master =>
310-
Task.FromResult(Command.ResponseSetExcludeList(Utilities.GetArgsAsText(args, 1, ","))),
310+
Command.ResponseSetExcludeList(Utilities.GetArgsAsText(args, 1, ",")),
311311

312312
//获取卡牌信息
313313
"FULLSETLIST" or

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>1.2.10.2</Version>
3+
<Version>1.2.10.3</Version>
44
</PropertyGroup>
55

66
<PropertyGroup>

0 commit comments

Comments
 (0)