From 9cae04584d6461276c770527db9991704a8f292d Mon Sep 17 00:00:00 2001 From: projectdx Date: Mon, 7 Aug 2023 19:16:59 +0900 Subject: [PATCH] =?UTF-8?q?main=20->=202023.08.07=20ohli24=20=EB=B2=84?= =?UTF-8?q?=EA=B7=B8=20=ED=94=BD=EC=8A=A4=20(.01.=20=EB=8B=A4=EC=9A=B4?= =?UTF-8?q?=EB=A1=9C=EB=93=9C=20=EB=AC=B8=EC=A0=9C=20=ED=95=B4=EA=B2=B0)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- logic_ohli24.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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}")