Skip to content

Commit ecb10f2

Browse files
authored
Correction for decoding
1 parent f54c708 commit ecb10f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ async def start_command(client: Client, message: Message):
3737
break
3838
elif len(argument) == 2:
3939
try:
40-
ids = [int(argument[1])]
40+
ids = [int(int(argument[1]) / abs(CHANNEL_ID))]
4141
except:
4242
return
4343
try:

0 commit comments

Comments
 (0)