catching a small bug in the folder name renaming

This commit is contained in:
manetta 2021-05-06 22:31:06 +02:00
parent 3b12ebffca
commit 433ee3f066

View File

@ -161,7 +161,7 @@ class Logbot(Bot):
if "title" not in self.db[room]:
self.db[room]["title"] = room
if "folder" not in self.db[room]:
self.db[room]["folder"] = room
self.db[room]["folder"] = self._parse_room_name(room)
if "stylesheet" not in self.db[room]:
self.db[room]["stylesheet"] = "timeline" # default stylesheet
if "font" not in self.db[room]: