Browse Source

adding more minor hacky checks for old foldername that include the muc address, now for the stylesheet + font updating

master
manetta 3 years ago
parent
commit
38237e9699
  1. 4
      LogBot/logbot.py

4
LogBot/logbot.py

@ -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…
Cancel
Save