MediaStream: Replace string.IndexOf with string.Contains where possible
This commit is contained in:
parent
e432796f6f
commit
4479713e04
|
@ -163,7 +163,7 @@ namespace MediaBrowser.Model.Entities
|
||||||
foreach (var tag in attributes)
|
foreach (var tag in attributes)
|
||||||
{
|
{
|
||||||
// Keep Tags that are not already in Title.
|
// Keep Tags that are not already in Title.
|
||||||
if (Title.IndexOf(tag, StringComparison.OrdinalIgnoreCase) == -1)
|
if (!Title.Contains(tag, StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
result.Append(" - ").Append(tag);
|
result.Append(" - ").Append(tag);
|
||||||
}
|
}
|
||||||
|
@ -202,7 +202,7 @@ namespace MediaBrowser.Model.Entities
|
||||||
foreach (var tag in attributes)
|
foreach (var tag in attributes)
|
||||||
{
|
{
|
||||||
// Keep Tags that are not already in Title.
|
// Keep Tags that are not already in Title.
|
||||||
if (Title.IndexOf(tag, StringComparison.OrdinalIgnoreCase) == -1)
|
if (!Title.Contains(tag, StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
result.Append(" - ").Append(tag);
|
result.Append(" - ").Append(tag);
|
||||||
}
|
}
|
||||||
|
@ -522,9 +522,9 @@ namespace MediaBrowser.Model.Entities
|
||||||
|
|
||||||
// sub = external .sub file
|
// sub = external .sub file
|
||||||
|
|
||||||
return codec.IndexOf("pgs", StringComparison.OrdinalIgnoreCase) == -1 &&
|
return !codec.Contains("pgs", StringComparison.OrdinalIgnoreCase) &&
|
||||||
codec.IndexOf("dvd", StringComparison.OrdinalIgnoreCase) == -1 &&
|
!codec.Contains("dvd", StringComparison.OrdinalIgnoreCase) &&
|
||||||
codec.IndexOf("dvbsub", StringComparison.OrdinalIgnoreCase) == -1 &&
|
!codec.Contains("dvbsub", StringComparison.OrdinalIgnoreCase) &&
|
||||||
!string.Equals(codec, "sub", StringComparison.OrdinalIgnoreCase) &&
|
!string.Equals(codec, "sub", StringComparison.OrdinalIgnoreCase) &&
|
||||||
!string.Equals(codec, "dvb_subtitle", StringComparison.OrdinalIgnoreCase);
|
!string.Equals(codec, "dvb_subtitle", StringComparison.OrdinalIgnoreCase);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user