Skip to content

Commit

Permalink
🐛 修复 302 无法正常跳转的问题 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
Well2333 authored Jul 14, 2023
1 parent ab2a57b commit cdf8588
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LiteClashProMan/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Download:

@classmethod
def init(cls):
cls.client = AsyncClient(proxies=config.download_proxy)
cls.client = AsyncClient(proxies=config.download_proxy, follow_redirects=True)
cls.sem = Semaphore(config.download_thread)

@classmethod
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[project]
name = "LiteClashProMan"
version = "0.2.0"
version = "0.2.1"
description = "生成并更新 clash 配置文件,并提供 http 下载和规则文件镜像下载。"
authors = [
{name = "Well404", email = "[email protected]"},
Expand Down

0 comments on commit cdf8588

Please sign in to comment.