1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-26 17:57:43 +00:00
This commit is contained in:
Keivan Beigi 2014-09-02 15:12:13 -07:00
parent ee285c2d4a
commit 1c7f2ad29e

View file

@ -3,7 +3,7 @@
public static class SceneChecker
{
//This method should prefer false negatives over false positives.
//It's better not to use a title that might be seen that to use one that isn't scene
//It's better not to use a title that might be scene than to use one that isn't scene
public static bool IsSceneTitle(string title)
{
if (!title.Contains(".")) return false;
@ -17,7 +17,5 @@
return true;
}
}
}