Fix getIDFromJson

This commit is contained in:
SeanOMik 2020-06-17 22:16:58 -05:00
parent ac325ead99
commit ef1d87a311
No known key found for this signature in database
GPG Key ID: FA4D55AC05268A88
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ from discordobject import snowflake
proc getIDFromJson*(str: string): uint64 =
var num: uint64
discard parseOct(str, num)
discard parseBiggestUInt(str, num)
return num
proc endpoint*(url: string): string =