mirror of
https://github.com/NohamR/QobuzDownloaderX.git
synced 2026-01-10 16:19:38 +00:00
Track IDs regex
Changed regex for track IDs
This commit is contained in:
@@ -645,7 +645,7 @@ namespace QobuzDownloaderX
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
// Grab all Track IDs listed on the API.
|
// Grab all Track IDs listed on the API.
|
||||||
string trackIDsPattern = "\"version\":(?:.*?),\"id\":(?<trackId>.*?),";
|
string trackIDsPattern = "\"isrc\":\"(?:.*?)\"(?:.*?)\"version\":(?:.*?),\"id\":(?<trackId>.*?),";
|
||||||
string trackIDsInput = albumIDResponseString;
|
string trackIDsInput = albumIDResponseString;
|
||||||
RegexOptions trackIDsOptions = RegexOptions.Multiline;
|
RegexOptions trackIDsOptions = RegexOptions.Multiline;
|
||||||
|
|
||||||
@@ -1450,7 +1450,7 @@ namespace QobuzDownloaderX
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
// Grab all Track IDs listed on the API.
|
// Grab all Track IDs listed on the API.
|
||||||
string trackIDsPattern = "\"version\":(?:.*?),\"id\":(?<trackId>.*?),";
|
string trackIDsPattern = "\"isrc\":\"(?:.*?)\"(?:.*?)\"version\":(?:.*?),\"id\":(?<trackId>.*?),";
|
||||||
string trackIDsInput = albumIDResponseString;
|
string trackIDsInput = albumIDResponseString;
|
||||||
RegexOptions trackIDsOptions = RegexOptions.Multiline;
|
RegexOptions trackIDsOptions = RegexOptions.Multiline;
|
||||||
|
|
||||||
@@ -2256,7 +2256,7 @@ namespace QobuzDownloaderX
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
// Grab all Track IDs listed on the API.
|
// Grab all Track IDs listed on the API.
|
||||||
string trackIDsPattern = "\"version\":(?:.*?),\"id\":(?<trackId>.*?),";
|
string trackIDsPattern = "\"isrc\":\"(?:.*?)\"(?:.*?)\"version\":(?:.*?),\"id\":(?<trackId>.*?),";
|
||||||
string trackIDsInput = albumIDResponseString;
|
string trackIDsInput = albumIDResponseString;
|
||||||
RegexOptions trackIDsOptions = RegexOptions.Multiline;
|
RegexOptions trackIDsOptions = RegexOptions.Multiline;
|
||||||
|
|
||||||
@@ -3030,7 +3030,7 @@ namespace QobuzDownloaderX
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
// Grab all Track IDs listed on the API.
|
// Grab all Track IDs listed on the API.
|
||||||
string trackIDsPattern = "\"version\":(?:.*?),\"id\":(?<trackId>.*?),";
|
string trackIDsPattern = "\"isrc\":\"(?:.*?)\"(?:.*?)\"version\":(?:.*?),\"id\":(?<trackId>.*?),";
|
||||||
string trackIDsInput = albumIDResponseString;
|
string trackIDsInput = albumIDResponseString;
|
||||||
RegexOptions trackIDsOptions = RegexOptions.Multiline;
|
RegexOptions trackIDsOptions = RegexOptions.Multiline;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user