Skip to content

Commit

Permalink
minor edit and bump up ver
Browse files Browse the repository at this point in the history
  • Loading branch information
KJHJason committed Mar 7, 2023
1 parent 1b34d83 commit ae22255
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/utils/crucial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__author__ = "KJHJason"
__copyright__ = "Copyright 2022 KJHJason"
__license__ = "GPL-3.0"
__version__ = "4.2.1"
__version__ = "4.2.2"
2 changes: 1 addition & 1 deletion src/utils/web_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ async def execute_download_process(website: str, creator_page: bool, download_pa
with httpx.Client(http2=True, cookies=cookie, timeout=10, headers=C.BASE_REQ_HEADERS.copy()) as client:
for retry_counter in range(1, C.MAX_RETRIES + 1):
try:
response = client.get("https://fantia.jp/")
response = client.get(C.FANTIA_WEBSITE_URL)
if response.status_code == 404:
log_failed_post_api_call(
download_path=download_path,
Expand Down

0 comments on commit ae22255

Please sign in to comment.