We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31e489a commit 6a12b08Copy full SHA for 6a12b08
docs/Release_Notes.md
@@ -7,9 +7,10 @@
7
5. 支持设置直播下载的默认清晰度
8
6. 重构复制粘贴写入 Cookie 功能
9
7. 重构调用 ffmpeg 下载直播功能
10
-8. 优化配置文件参数容错机制
11
-9. 恢复数据请求延时机制
12
-10. 优化程序运行提示
13
-11. 其他细节优化
+8. 优化提取链接的正则表达式
+9. 优化配置文件参数容错机制
+10. 恢复数据请求延时机制
+11. 优化程序运行提示
14
+12. 其他细节优化
15
16
<p><strong>更新公告:本项目名称由 <code>TikTokDownloader</code> 变更为 <code>DouK-Downloader</code></strong></p>
src/link/requester.py
@@ -14,7 +14,7 @@
class Requester:
17
- URL = compile(r"(https?://\S+)")
+ URL = compile(r"(https?://[^\s\"<>\\^`{|},。;!?、【】《》]+)")
18
HEADERS = BLANK_HEADERS
19
20
def __init__(
0 commit comments