mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-04 11:33:08 -05:00
* Fixed a regression where confirm-email was validating for a real email when it's not required. * Fixed fit to screen breaking as canvas was still showing on the screen when it should have been hidden. * Fixed a missing age rating in the pipe * Fixed fit to height not properly aligning the image * Tweaked Startup check for base url
6 lines
149 B
C#
6 lines
149 B
C#
namespace API.Errors;
|
|
|
|
#nullable enable
|
|
public record ApiException(int Status, string? Message = null, string? Details = null);
|
|
#nullable disable
|