bug fixes (#774)
* add custom movie metadata parsing * refactor episode nfo reader * fix emby and jellyfin bugs
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace ErsatzTV.Core.Errors;
|
||||
|
||||
public class FailedToReadNfo : BaseError
|
||||
{
|
||||
public FailedToReadNfo(string message = null) : base(
|
||||
string.IsNullOrWhiteSpace(message) ? "Failed to read NFO metadata" : $"Failed to read NFO metadata: {message}")
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user