adding more minor hacky checks for old foldername that include the muc address, now for the stylesheet + font updating
This commit is contained in:
parent
de5b1d961d
commit
38237e9699
@ -263,6 +263,8 @@ class Logbot(Bot):
|
||||
self.db[message.room]["stylesheet"] = stylesheet
|
||||
room_name = self._parse_room_name(message.room)
|
||||
room_path = os.path.join(self.output, self.db[message.room]["folder"])
|
||||
if "@" in room_path: # hacky
|
||||
room_path = self._parse_room_name(room_path)
|
||||
stylesheet_path = os.path.join("stylesheets", f"{ stylesheet }.css")
|
||||
stylesheet_dest_path = os.path.join(room_path, "stylesheet.css")
|
||||
try:
|
||||
@ -280,6 +282,8 @@ class Logbot(Bot):
|
||||
self.db[message.room]["font"] = font
|
||||
room_name = self._parse_room_name(message.room)
|
||||
room_path = os.path.join(self.output, self.db[message.room]["folder"])
|
||||
if "@" in room_path: # hacky
|
||||
room_path = self._parse_room_name(room_path)
|
||||
font_path = os.path.join("fonts", f"{ font }.ttf")
|
||||
font_dest_path = os.path.join(room_path, "font.ttf")
|
||||
if font == 'none':
|
||||
|
Loading…
Reference in New Issue
Block a user