* start adding jellyfin path info; fix some scanning bugs * sync jellyfin libraries before scanning to ensure latest path infos * code cleanup * support emby path infos * fix periodic scanning of emby and jellyfin libraries * bug fixes
10 lines
131 B
C#
10 lines
131 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public enum ChannelSubtitleMode
|
|
{
|
|
None = 0,
|
|
Forced = 1,
|
|
Default = 2,
|
|
Any = 3
|
|
}
|