Smart Filter Encoding Fix (#2387)
This commit is contained in:
parent
b6d4938e22
commit
9894a2623c
133 changed files with 677 additions and 471 deletions
|
|
@ -12,6 +12,7 @@ using Hangfire;
|
|||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace API.Services.Tasks;
|
||||
#nullable enable
|
||||
|
||||
public interface IBackupService
|
||||
{
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ using Hangfire;
|
|||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace API.Services.Tasks;
|
||||
#nullable enable
|
||||
|
||||
public interface ICleanupService
|
||||
{
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ using Microsoft.Extensions.Logging;
|
|||
using VersOne.Epub;
|
||||
|
||||
namespace API.Services.Tasks.Metadata;
|
||||
#nullable enable
|
||||
|
||||
public interface IWordCountAnalyzerService
|
||||
{
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@ using Microsoft.Extensions.Hosting;
|
|||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace API.Services.Tasks.Scanner;
|
||||
#nullable enable
|
||||
|
||||
public interface ILibraryWatcher
|
||||
{
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@ using Kavita.Common.Helpers;
|
|||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace API.Services.Tasks.Scanner;
|
||||
#nullable enable
|
||||
|
||||
public class ParsedSeries
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ using System.Linq;
|
|||
using API.Entities.Enums;
|
||||
|
||||
namespace API.Services.Tasks.Scanner.Parser;
|
||||
#nullable enable
|
||||
|
||||
public interface IDefaultParser
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ using API.Entities.Enums;
|
|||
using API.Extensions;
|
||||
|
||||
namespace API.Services.Tasks.Scanner.Parser;
|
||||
#nullable enable
|
||||
|
||||
public static class Parser
|
||||
{
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@ using Kavita.Common;
|
|||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace API.Services.Tasks.Scanner;
|
||||
|
||||
#nullable enable
|
||||
|
||||
public interface IProcessSeries
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@ using Hangfire;
|
|||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace API.Services.Tasks;
|
||||
#nullable enable
|
||||
|
||||
public interface IScannerService
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@ using Kavita.Common;
|
|||
using Microsoft.AspNetCore.Authorization;
|
||||
|
||||
namespace API.Services.Tasks;
|
||||
#nullable enable
|
||||
|
||||
public interface IThemeService
|
||||
{
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@ using Microsoft.Extensions.Logging;
|
|||
|
||||
namespace API.Services.Tasks;
|
||||
|
||||
#nullable enable
|
||||
|
||||
public interface IStatsService
|
||||
{
|
||||
Task Send();
|
||||
|
|
|
|||
|
|
@ -14,6 +14,8 @@ using Microsoft.Extensions.Logging;
|
|||
|
||||
namespace API.Services.Tasks;
|
||||
|
||||
#nullable enable
|
||||
|
||||
internal class GithubReleaseMetadata
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue