Fix multiple rooms in config file
Closes https://git.autonomic.zone/decentral1se/xbotlib/issues/33.
This commit is contained in:
@ -133,7 +133,7 @@ class Config:
|
||||
if rooms is None:
|
||||
return None
|
||||
|
||||
return rooms.split(",")
|
||||
return [room.strip() for room in rooms.split(",")]
|
||||
|
||||
@property
|
||||
def no_auto_join(self):
|
||||
|
||||
Reference in New Issue
Block a user