PlayTo SupportedStaticFormats setting

This commit is contained in:
7illusions 2014-03-13 16:04:48 +01:00
parent e985e81e84
commit 13674ac716

View File

@ -13,12 +13,14 @@ namespace MediaBrowser.Dlna.PlayTo.Configuration
private set; private set;
} }
private static readonly string[] _supportedStaticFormats = { "mp3", "flac", "m4a", "wma", "avi", "mp4", "mkv", "ts" };
[XmlIgnore] [XmlIgnore]
public string[] SupportedStaticFormats public string[] SupportedStaticFormats
{ {
get get
{ {
return new[] { "mp3", "flac", "m4a", "wma", "avi", "mp4", "mkv" }; return _supportedStaticFormats;
} }
} }