Bug fix #318: Audible changed their API, likely in conjunction with shutting down the Windows App. DownloadQuality.Extreme and DownloadQuality.Low now throw errors
This commit is contained in:
parent
78186d4973
commit
7f086aeaac
@ -2,7 +2,7 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net6.0-windows</TargetFramework>
|
<TargetFramework>net6.0-windows</TargetFramework>
|
||||||
<Version>8.2.3.1</Version>
|
<Version>8.2.4.1</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Octokit" Version="1.0.0" />
|
<PackageReference Include="Octokit" Version="1.0.0" />
|
||||||
|
|||||||
@ -152,6 +152,11 @@ namespace AudibleUtilities
|
|||||||
Serilog.Log.Logger.Debug("Completed library scan.");
|
Serilog.Log.Logger.Debug("Completed library scan.");
|
||||||
|
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
|
//// this will not work for multi accounts
|
||||||
|
//var library_json = "library.json";
|
||||||
|
//library_json = System.IO.Path.GetFullPath(library_json);
|
||||||
|
//if (System.IO.File.Exists(library_json))
|
||||||
|
// items = AudibleApi.Common.Converter.FromJson<List<Item>>(System.IO.File.ReadAllText(library_json));
|
||||||
//System.IO.File.WriteAllText(library_json, AudibleApi.Common.Converter.ToJson(items));
|
//System.IO.File.WriteAllText(library_json, AudibleApi.Common.Converter.ToJson(items));
|
||||||
#endif
|
#endif
|
||||||
var validators = new List<IValidator>();
|
var validators = new List<IValidator>();
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="AudibleApi" Version="4.4.0.1" />
|
<PackageReference Include="AudibleApi" Version="4.5.0.1" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user