mirror of
https://github.com/NohamR/QobuzDownloaderX.git
synced 2026-01-08 23:28:17 +00:00
0.9.9.15
Fixed downloading goodies (digital booklets)
This commit is contained in:
@@ -557,7 +557,7 @@ namespace QobuzDownloaderX
|
||||
|
||||
#region "Goodies" URL (Digital Booklets)
|
||||
// Look for "Goodies" (digital booklet)
|
||||
var goodiesLog = Regex.Match(albumRequest, "\"goodies\":\\[{\"id\":(?<notUsed>.*?),\"original_url\":\"(?<booklet>.*?)\",\\\"").Groups;
|
||||
var goodiesLog = Regex.Match(albumRequest, "\"goodies\":\\[{(?<notUsed>.*?),\"url\":\"(?<booklet>.*?)\",").Groups;
|
||||
var goodies = goodiesLog[2].Value;
|
||||
|
||||
// Remove backslashes from the stream URL to have a proper URL.
|
||||
@@ -1688,7 +1688,7 @@ namespace QobuzDownloaderX
|
||||
|
||||
#region "Goodies" URL (Digital Booklets)
|
||||
// Look for "Goodies" (digital booklet)
|
||||
var goodiesLog = Regex.Match(albumRequest, "\"goodies\":\\[{\"id\":(?<notUsed>.*?),\"original_url\":\"(?<booklet>.*?)\",\\\"").Groups;
|
||||
var goodiesLog = Regex.Match(albumRequest, "\"goodies\":\\[{(?<notUsed>.*?),\"url\":\"(?<booklet>.*?)\",").Groups;
|
||||
var goodies = goodiesLog[2].Value;
|
||||
|
||||
// Remove backslashes from the stream URL to have a proper URL.
|
||||
@@ -2817,7 +2817,7 @@ namespace QobuzDownloaderX
|
||||
|
||||
#region "Goodies" URL (Digital Booklets)
|
||||
// Look for "Goodies" (digital booklet)
|
||||
var goodiesLog = Regex.Match(albumRequest, "\"goodies\":\\[{\"id\":(?<notUsed>.*?),\"original_url\":\"(?<booklet>.*?)\",\\\"").Groups;
|
||||
var goodiesLog = Regex.Match(albumRequest, "\"goodies\":\\[{(?<notUsed>.*?),\"url\":\"(?<booklet>.*?)\",").Groups;
|
||||
var goodies = goodiesLog[2].Value;
|
||||
|
||||
// Remove backslashes from the stream URL to have a proper URL.
|
||||
@@ -3901,7 +3901,7 @@ namespace QobuzDownloaderX
|
||||
|
||||
#region "Goodies" URL (Digital Booklets)
|
||||
// Look for "Goodies" (digital booklet)
|
||||
var goodiesLog = Regex.Match(albumRequest, "\"goodies\":\\[{\"id\":(?<notUsed>.*?),\"original_url\":\"(?<booklet>.*?)\",\\\"").Groups;
|
||||
var goodiesLog = Regex.Match(albumRequest, "\"goodies\":\\[{(?<notUsed>.*?),\"url\":\"(?<booklet>.*?)\",").Groups;
|
||||
var goodies = goodiesLog[2].Value;
|
||||
|
||||
// Remove backslashes from the stream URL to have a proper URL.
|
||||
|
||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("0.9.9.14")]
|
||||
[assembly: AssemblyFileVersion("0.9.9.14")]
|
||||
[assembly: AssemblyVersion("0.9.9.15")]
|
||||
[assembly: AssemblyFileVersion("0.9.9.15")]
|
||||
|
||||
Reference in New Issue
Block a user