Browse Source

Fix audit log automod_rule_trigger_type extra missing

pull/9996/merge
Alex Nørgaard 4 days ago
committed by GitHub
parent
commit
348c7d7873
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      discord/audit_logs.py

4
discord/audit_logs.py

@ -761,7 +761,7 @@ class AuditLogEntry(Hashable):
self.extra = _AuditLogProxyAutoModAction( self.extra = _AuditLogProxyAutoModAction(
automod_rule_name=extra['auto_moderation_rule_name'], automod_rule_name=extra['auto_moderation_rule_name'],
automod_rule_trigger_type=enums.try_enum( automod_rule_trigger_type=enums.try_enum(
enums.AutoModRuleTriggerType, extra['auto_moderation_rule_trigger_type'] enums.AutoModRuleTriggerType, int(extra['auto_moderation_rule_trigger_type'])
), ),
channel=channel, channel=channel,
) )
@ -769,7 +769,7 @@ class AuditLogEntry(Hashable):
self.extra = _AuditLogProxyAutoModActionQuarantineUser( self.extra = _AuditLogProxyAutoModActionQuarantineUser(
automod_rule_name=extra['auto_moderation_rule_name'], automod_rule_name=extra['auto_moderation_rule_name'],
automod_rule_trigger_type=enums.try_enum( automod_rule_trigger_type=enums.try_enum(
enums.AutoModRuleTriggerType, extra['auto_moderation_rule_trigger_type'] enums.AutoModRuleTriggerType, int(extra['auto_moderation_rule_trigger_type'])
), ),
) )

Loading…
Cancel
Save