Browse Source

Fix tests

crobibero 4 years ago
parent
commit
20251e670f
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Emby.Naming/Video/VideoListResolver.cs

+ 2 - 1
Emby.Naming/Video/VideoListResolver.cs

@@ -226,7 +226,8 @@ namespace Emby.Naming.Video
                 {
                     testFilename = cleanName.ToString();
                 }
-                else if (folderName.Length <= testFilename.Length)
+
+                if (folderName.Length <= testFilename.Length)
                 {
                     testFilename = testFilename.Substring(folderName.Length).Trim();
                 }