From 38237e96997fe21f384f09ca2a110a96fd3e31ec Mon Sep 17 00:00:00 2001 From: manetta Date: Thu, 6 May 2021 23:14:15 +0200 Subject: [PATCH] adding more minor hacky checks for old foldername that include the muc address, now for the stylesheet + font updating --- LogBot/logbot.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/LogBot/logbot.py b/LogBot/logbot.py index 38e1e80..d31f50a 100644 --- a/LogBot/logbot.py +++ b/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':