Browse Source

Improve logic when determining return value

Co-Authored-By: ploughpuff <33969763+ploughpuff@users.noreply.github.com>
Vasily 6 years ago
parent
commit
f1086a72bf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs

+ 1 - 1
MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs

@@ -95,7 +95,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
             }
             }
 
 
             // underTest shall be null if versions is unknown
             // underTest shall be null if versions is unknown
-            return (underTest == null) ? false : !(underTest.CompareTo(minRequired) < 0) && !(underTest.CompareTo(maxRequired) > 0);
+            return (underTest == null) ? false : (underTest.CompareTo(minRequired) >= 0 && underTest.CompareTo(maxRequired) <= 0);
         }
         }
 
 
         /// <summary>
         /// <summary>