Skip to content

Commit

Permalink
config fix, userjoin API fix
Browse files Browse the repository at this point in the history
Signed-off-by: Sean <[email protected]>
  • Loading branch information
stqism committed Jan 24, 2018
1 parent 6602ef2 commit 0e69599
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arsenic.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ def save():
pass

config.set('main', 'channel', clist)
config_save()
config.config_save()


def checkauth(user):
Expand Down Expand Up @@ -662,7 +662,7 @@ def __config_remove__(item):
def userJoined(self, cbuser, cbchannel):
setattr(self, 'type', 'userjoin')
if cbuser != self.nickname:
setattr(self, 'user', self.profileManager.getuser_bynick(cbuser))
setattr(self, 'profile', self.profileManager.getuser_bynick(cbuser))
setattr(self, 'channel', cbchannel)
setattr(self, 'ver', VER)

Expand Down

0 comments on commit 0e69599

Please sign in to comment.