bug fixes (#774)

* add custom movie metadata parsing

* refactor episode nfo reader

* fix emby and jellyfin bugs
This commit is contained in:
Jason Dove
2022-04-30 17:39:47 -05:00
committed by GitHub
parent 4ae671b633
commit 1ebc4b62e3
12 changed files with 516 additions and 122 deletions
+9
View File
@@ -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}")
{
}
}