Fix permissions check when proxying
This commit is contained in:
parent
02e2c9314b
commit
5386f24b69
@ -227,8 +227,8 @@ namespace PluralKit.Bot
|
|||||||
var permissions = guildUser.GetPermissions(channel);
|
var permissions = guildUser.GetPermissions(channel);
|
||||||
|
|
||||||
// If we can't send messages at all, just bail immediately.
|
// If we can't send messages at all, just bail immediately.
|
||||||
// TODO: can you have ManageMessages and *not* SendMessages? What happens then?
|
// 2020-04-22: Manage Messages does *not* override a lack of Send Messages.
|
||||||
if (!permissions.SendMessages && !permissions.ManageMessages) return false;
|
if (!permissions.SendMessages) return false;
|
||||||
|
|
||||||
if (!permissions.ManageWebhooks)
|
if (!permissions.ManageWebhooks)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user