Skip to content

Commit 6b5fcb3

Browse files
author
aandrew-me
committed
Fixes
1 parent b11b61f commit 6b5fcb3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/playlist.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ function saveLinks() {
561561
) {
562562
count += 1;
563563
let itemTitle;
564-
itemTitle = i18n.__("Link") + " " + originalCount;
564+
itemTitle = i18n.__("Link") + " " + count;
565565

566566
if (count > 1) {
567567
getId(`p${count - 1}`).textContent = i18n.__("Link added");

src/renderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1187,7 +1187,7 @@ function download(
11871187
subs2 || subLangs,
11881188
"--no-playlist",
11891189
"--embed-metadata",
1190-
(ext == "m4a" || ext == "mp4") && extractor_key === "Youtube" ? "--embed-thumbnail" && os.platform() !== "darwin" : "",
1190+
(ext == "m4a" || ext == "mp4") && extractor_key === "Youtube" && os.platform() !== "darwin" ? "--embed-thumbnail" : "",
11911191
cookieArg,
11921192
browser,
11931193
configArg,

0 commit comments

Comments
 (0)