Smart Filter Encoding Fix (#2387)

This commit is contained in:
Joe Milazzo 2023-11-02 08:35:43 -05:00 committed by GitHub
parent b6d4938e22
commit 9894a2623c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
133 changed files with 677 additions and 471 deletions

View file

@ -16,6 +16,8 @@ using Microsoft.Extensions.Logging;
namespace API.Services;
#nullable enable
public interface IAccountService
{
Task<IEnumerable<ApiException>> ChangeUserPassword(AppUser user, string newPassword);

View file

@ -18,6 +18,8 @@ using SharpCompress.Common;
namespace API.Services;
#nullable enable
public interface IArchiveService
{
void ExtractArchive(string archivePath, string extractPath);

View file

@ -29,6 +29,7 @@ using VersOne.Epub.Options;
using VersOne.Epub.Schema;
namespace API.Services;
#nullable enable
public interface IBookService

View file

@ -12,6 +12,8 @@ using Microsoft.Extensions.Logging;
namespace API.Services;
#nullable enable
public interface IBookmarkService
{
Task DeleteBookmarkFiles(IEnumerable<AppUserBookmark> bookmarks);

View file

@ -7,6 +7,7 @@ using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
namespace API.Services.HostedServices;
#nullable enable
public class StartupTasksHostedService : IHostedService
{

View file

@ -14,6 +14,7 @@ using Kavita.Common.Helpers;
using Microsoft.Extensions.Logging;
namespace API.Services.Plus;
#nullable enable
/// <summary>
/// Used for matching and fetching metadata on a series

View file

@ -13,6 +13,7 @@ using Kavita.Common.EnvironmentInfo;
using Microsoft.Extensions.Logging;
namespace API.Services.Plus;
#nullable enable
internal class RegisterLicenseResponseDto
{

View file

@ -17,6 +17,7 @@ using Kavita.Common.Helpers;
using Microsoft.Extensions.Logging;
namespace API.Services.Plus;
#nullable enable
public interface IRatingService
{

View file

@ -18,6 +18,7 @@ using Kavita.Common.Helpers;
using Microsoft.Extensions.Logging;
namespace API.Services.Plus;
#nullable enable
public record PlusSeriesDto
{

View file

@ -22,6 +22,7 @@ using Kavita.Common.Helpers;
using Microsoft.Extensions.Logging;
namespace API.Services.Plus;
#nullable enable
/// <summary>
/// Misleading name but is the source of data (like a review coming from AniList)

View file

@ -12,6 +12,7 @@ using Hangfire;
using Microsoft.Extensions.Logging;
namespace API.Services.Tasks;
#nullable enable
public interface IBackupService
{

View file

@ -13,6 +13,7 @@ using Hangfire;
using Microsoft.Extensions.Logging;
namespace API.Services.Tasks;
#nullable enable
public interface ICleanupService
{

View file

@ -13,6 +13,7 @@ using Microsoft.Extensions.Logging;
using VersOne.Epub;
namespace API.Services.Tasks.Metadata;
#nullable enable
public interface IWordCountAnalyzerService
{

View file

@ -11,6 +11,7 @@ using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
namespace API.Services.Tasks.Scanner;
#nullable enable
public interface ILibraryWatcher
{

View file

@ -12,6 +12,7 @@ using Kavita.Common.Helpers;
using Microsoft.Extensions.Logging;
namespace API.Services.Tasks.Scanner;
#nullable enable
public class ParsedSeries
{

View file

@ -3,6 +3,7 @@ using System.Linq;
using API.Entities.Enums;
namespace API.Services.Tasks.Scanner.Parser;
#nullable enable
public interface IDefaultParser
{

View file

@ -7,6 +7,7 @@ using API.Entities.Enums;
using API.Extensions;
namespace API.Services.Tasks.Scanner.Parser;
#nullable enable
public static class Parser
{

View file

@ -21,7 +21,6 @@ using Kavita.Common;
using Microsoft.Extensions.Logging;
namespace API.Services.Tasks.Scanner;
#nullable enable
public interface IProcessSeries

View file

@ -19,6 +19,8 @@ using Hangfire;
using Microsoft.Extensions.Logging;
namespace API.Services.Tasks;
#nullable enable
public interface IScannerService
{
/// <summary>

View file

@ -10,6 +10,7 @@ using Kavita.Common;
using Microsoft.AspNetCore.Authorization;
namespace API.Services.Tasks;
#nullable enable
public interface IThemeService
{

View file

@ -19,6 +19,8 @@ using Microsoft.Extensions.Logging;
namespace API.Services.Tasks;
#nullable enable
public interface IStatsService
{
Task Send();

View file

@ -14,6 +14,8 @@ using Microsoft.Extensions.Logging;
namespace API.Services.Tasks;
#nullable enable
internal class GithubReleaseMetadata
{
/// <summary>