* re-enable plex, temp force secure connections * add plex fanart * synchronize genre from plex * fix plex library sync * improve stream error handling * synchronize plex artwork * use switch instead of button * prioritize local connections for insecure plex sources * sign out of plex * better plex sign in/out * code cleanup * fix plex movie aspect ratio and scan type
10 lines
242 B
C#
10 lines
242 B
C#
namespace ErsatzTV.Core.Errors
|
|
{
|
|
public class PlayoutItemDoesNotExistOnDisk : BaseError
|
|
{
|
|
public PlayoutItemDoesNotExistOnDisk(string path) : base($"Playout item does not exist on disk\n{path}")
|
|
{
|
|
}
|
|
}
|
|
}
|