fix(moderation): silently fail if an overflow error is encountered
Some checks failed
Pylint / Pylint (3.10) (push) Failing after 46s
Some checks failed
Pylint / Pylint (3.10) (push) Failing after 46s
This commit is contained in:
parent
8da6288263
commit
c8a32058f1
1 changed files with 4 additions and 1 deletions
|
@ -1719,7 +1719,10 @@ class Moderation(commands.Cog):
|
|||
timestamp = round(case['timestamp'] / 1000)
|
||||
|
||||
if case['duration']:
|
||||
duration = timedelta(seconds=round(float(case['duration']) / 1000))
|
||||
try:
|
||||
duration = timedelta(seconds=round(float(case['duration']) / 1000))
|
||||
except OverflowError:
|
||||
continue
|
||||
|
||||
if case['resolved']:
|
||||
resolved = 1
|
||||
|
|
Loading…
Reference in a new issue