Yoshod / Sersi

http://discord.gg/TgrPmDwVwq
GNU General Public License v3.0
3 stars 1 forks source link

[FIX] #186 Convert IDs to str mentions #192

Closed Yoshod closed 8 months ago

Yoshod commented 8 months ago

Issue appeared to be caused by:

Ignoring exception in on_vote_ban Traceback (most recent call last): File "/home/sersi/.local/lib/python3.10/site-packages/nextcord/client.py", line 497, in _run_event await coro(*args, **kwargs) File "/home/sersi/Live/cogs/moderation/ban.py", line 731, in on_vote_ban yes_list = "\n• ".join(yes_voters) TypeError: sequence item 0: expected str instance, int found

Fixed this by converting the IDs to str mentions.

Resolves #186