mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-26 10:44:50 +03:00
added cloud sync model objects
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
using MediaBrowser.Model.Extensions;
|
||||
using System.Diagnostics;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace MediaBrowser.Model.Entities
|
||||
{
|
||||
@@ -138,8 +137,11 @@ namespace MediaBrowser.Model.Entities
|
||||
|
||||
string codec = Codec ?? string.Empty;
|
||||
|
||||
// sub = external .sub file
|
||||
|
||||
return StringHelper.IndexOfIgnoreCase(codec, "pgs") == -1 &&
|
||||
StringHelper.IndexOfIgnoreCase(codec, "dvd") == -1;
|
||||
StringHelper.IndexOfIgnoreCase(codec, "dvd") == -1 &&
|
||||
!StringHelper.EqualsIgnoreCase(codec, "sub");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user