Skip to content

Commit 1e24ea1

Browse files
🔖 v0.5.16
1 parent 6c0d213 commit 1e24ea1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "twitch-dlp",
3-
"version": "0.5.15",
3+
"version": "0.5.16",
44
"author": "DmitryScaletta",
55
"description": "Download any twitch VODs from start during live broadcast",
66
"license": "MIT",

twitch-dlp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1509,7 +1509,7 @@ const downloadByChannelLogin = async (channelLogin, args) => {
15091509
if (liveVideoInfo) {
15101510
const { formats, videoInfo } = liveVideoInfo;
15111511
await downloadVideo(formats, videoInfo, args);
1512-
if (args["download-sections"]) return;
1512+
if (!isRetry || args["download-sections"]) return;
15131513
} else {
15141514
let message = `[live-from-start] Cannot find the playlist`;
15151515
if (isRetry) {

0 commit comments

Comments
 (0)