Browse Source

Properly insert at the end if position is not found when moving.

Fixes #5923
v1.5.x
Rapptz 5 years ago
parent
commit
b9e1bdf87e
  1. 2
      discord/abc.py

2
discord/abc.py

@ -227,7 +227,7 @@ class GuildChannel:
# not there somehow lol
return
else:
index = next((i for i, c in enumerate(channels) if c.position >= position), -1)
index = next((i for i, c in enumerate(channels) if c.position >= position), len(channels))
# add ourselves at our designated position
channels.insert(index, self)

Loading…
Cancel
Save