s/roomid/room_id/

pull/2492/head
David Baker 2017-10-03 17:41:38 +01:00
parent 1e375468de
commit 1e2ac54351
1 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ class SpamChecker(object):
return self.spam_checker.check_event_for_spam(event)
def user_may_invite(self, userid, roomid):
def user_may_invite(self, userid, room_id):
"""Checks if a given user may send an invite
If this method returns false, the invite will be rejected.
@ -60,4 +60,4 @@ class SpamChecker(object):
if self.spam_checker is None:
return True
return self.spam_checker.user_may_invite(userid, roomid)
return self.spam_checker.user_may_invite(userid, room_id)