Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/232186630241fc40f5e0d5c6af9e323cf85aed65/Emby.Naming/AudioBook/AudioBookNameParserResult.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Emby.Naming/AudioBook/AudioBookNameParserResult.cs

19 lines
461 B

namespace Emby.Naming.AudioBook
{
4 years ago
/// <summary>
/// Data object used to pass result of name and year parsing.
/// </summary>
public struct AudioBookNameParserResult
{
4 years ago
/// <summary>
/// Gets or sets name of audiobook.
/// </summary>
public string Name { get; set; }
4 years ago
/// <summary>
/// Gets or sets optional year of release.
/// </summary>
public int? Year { get; set; }
}
}