Fix missing argument change on dispatch()

Closes #102
This commit is contained in:
Luna 2020-04-30 23:42:35 -03:00
parent fd82046f2c
commit c0c759c31e
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ async def _mass_chan_update(guild_id, channel_ids: List[Optional[int]]):
continue continue
chan = await app.storage.get_channel(channel_id) chan = await app.storage.get_channel(channel_id)
await app.dispatcher.guild.dispatch(guild_id, "CHANNEL_UPDATE", chan) await app.dispatcher.guild.dispatch(guild_id, ("CHANNEL_UPDATE", chan))
@dataclass @dataclass