@@ -55,10 +55,20 @@ let yt: Innertube;
55
55
let win : BrowserWindow ;
56
56
let playingUrl : string ;
57
57
58
- const isYouTubePremium = ( ) =>
59
- win . webContents . executeJavaScript (
60
- '!document.querySelector(\'#endpoint[href="/music_premium"]\')' ,
61
- ) as Promise < boolean > ;
58
+ const isYouTubeMusicPremium = async ( ) => {
59
+ const upgradeBtnIconPathData = ( await win . webContents . executeJavaScript (
60
+ 'document.querySelector(\'iron-iconset-svg[name="yt-sys-icons"] #youtube_music_monochrome\')?.firstChild?.getAttribute("d")?.substring(0, 15)' ,
61
+ ) ) as string | null ;
62
+
63
+ // Fallback to non-premium if the icon is not found
64
+ if ( ! upgradeBtnIconPathData ) return false ;
65
+
66
+ const selector = `ytmusic-guide-entry-renderer:has(> tp-yt-paper-item > yt-icon path[d^="${ upgradeBtnIconPathData } "])` ;
67
+
68
+ return ( await win . webContents . executeJavaScript (
69
+ `!document.querySelector('${ selector } ')` ,
70
+ ) ) as boolean ;
71
+ } ;
62
72
63
73
const sendError = ( error : Error , source ?: string ) => {
64
74
win . setProgressBar ( - 1 ) ; // Close progress bar
@@ -370,7 +380,7 @@ async function downloadSongUnsafe(
370
380
}
371
381
372
382
const downloadOptions : FormatOptions = {
373
- type : ( await isYouTubePremium ( ) ) ? 'audio' : 'video+audio' , // Audio, video or video+audio
383
+ type : ( await isYouTubeMusicPremium ( ) ) ? 'audio' : 'video+audio' , // Audio, video or video+audio
374
384
quality : 'best' , // Best, bestefficiency, 144p, 240p, 480p, 720p and so on.
375
385
format : 'any' , // Media container format
376
386
} ;
0 commit comments