diff --git a/logic_ohli24.py b/logic_ohli24.py index 2fdc14c..0f70944 100644 --- a/logic_ohli24.py +++ b/logic_ohli24.py @@ -955,7 +955,7 @@ class LogicOhli24(LogicModuleBase): def check_for_new_post(self): # Get the HTML content of the page - res = requests.get("https://ohli24.org/bbs/board.php?bo_table=ing") + res = requests.get("https://ohli24.live/bbs/board.php?bo_table=ing") soup = BeautifulSoup(res.content, "html.parser") # Find the latest post on the page @@ -964,7 +964,7 @@ class LogicOhli24(LogicModuleBase): soup.find("div", class_="img-item") .find("img", class_="wr-img") .get("src") - .replace("..", "https://ohli24.org") + .replace("..", "https://ohli24.live") ) logger.debug(f"latest_post:: {latest_post}")