PR comments
This commit is contained in:
parent
5a99755e3a
commit
dfded9796c
2 changed files with 5 additions and 1 deletions
|
|
@ -65,5 +65,9 @@ public sealed record LibraryDto
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>This does not exclude the library from being linked to wrt Series Relationships</remarks>
|
/// <remarks>This does not exclude the library from being linked to wrt Series Relationships</remarks>
|
||||||
/// <remarks>Requires a valid LicenseKey</remarks>
|
/// <remarks>Requires a valid LicenseKey</remarks>
|
||||||
|
public bool AllowMetadataMatching { get; set; } = true;
|
||||||
|
/// <summary>
|
||||||
|
/// Allow Kavita to read metadata (ComicInfo.xml, Epub, PDF)
|
||||||
|
/// </summary>
|
||||||
public bool EnableMetadata { get; set; } = true;
|
public bool EnableMetadata { get; set; } = true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -444,7 +444,7 @@ public class ExternalMetadataService : IExternalMetadataService
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// This returns an AniListSeries and Match returns ExternalSeriesDto
|
// This returns an AniListSeries and Match returns ExternalSeriesDto
|
||||||
result = await _kavitaPlusApiService .GetSeriesDetail(data);
|
result = await _kavitaPlusApiService.GetSeriesDetail(data);
|
||||||
}
|
}
|
||||||
catch (FlurlHttpException ex)
|
catch (FlurlHttpException ex)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue