Skip to content

Commit edad53e

Browse files
franz-dcJellyBrick
andauthored
fix(downloader): allow downloads for signed out users (#3145)
* fix(downloader): allow downloads for signed out users * refactor(downloader): use yt.config_.LOGGED_IN for checking sign in status * Apply suggestions from code review --------- Co-authored-by: JellyBrick <[email protected]>
1 parent cc6c0bd commit edad53e

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/plugins/downloader/main/index.ts

+10-2
Original file line numberDiff line numberDiff line change
@@ -56,17 +56,25 @@ let win: BrowserWindow;
5656
let playingUrl: string;
5757

5858
const isYouTubeMusicPremium = async () => {
59+
// If signed out, it is understood as non-premium
60+
const isSignedIn = (await win.webContents.executeJavaScript(
61+
'!!yt.config_.LOGGED_IN',
62+
)) as boolean;
63+
64+
if (!isSignedIn) return false;
65+
66+
// If signed in, check if the upgrade button is present
5967
const upgradeBtnIconPathData = (await win.webContents.executeJavaScript(
6068
'document.querySelector(\'iron-iconset-svg[name="yt-sys-icons"] #youtube_music_monochrome\')?.firstChild?.getAttribute("d")?.substring(0, 15)',
6169
)) as string | null;
6270

6371
// Fallback to non-premium if the icon is not found
6472
if (!upgradeBtnIconPathData) return false;
6573

66-
const selector = `ytmusic-guide-entry-renderer:has(> tp-yt-paper-item > yt-icon path[d^="${upgradeBtnIconPathData}"])`;
74+
const upgradeButton = `ytmusic-guide-entry-renderer:has(> tp-yt-paper-item > yt-icon path[d^="${upgradeBtnIconPathData}"])`;
6775

6876
return (await win.webContents.executeJavaScript(
69-
`!document.querySelector('${selector}')`,
77+
`!document.querySelector('${upgradeButton}')`,
7078
)) as boolean;
7179
};
7280

0 commit comments

Comments
 (0)