We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b77d37 commit 2918ac1Copy full SHA for 2918ac1
1 file changed
OpenMediaServer/Services/Discovery/DiscoveryShowService.cs
@@ -38,7 +38,7 @@ public async Task CreateShow(string path)
38
39
var cleanedFolderTitle = !string.IsNullOrWhiteSpace(discoveryInfo.Year) ? folderTitle?.Replace(discoveryInfo.Year, "")?.Replace("()", "")?.Trim() : folderTitle?.Trim();
40
// Show
41
- var showPath = Path.Combine(Globals.MediaFolder, "Shows", cleanedFolderTitle);
+ var showPath = Path.Combine(Globals.MediaFolder, "Shows", folderTitle);
42
var show = await _inventoryService.GetItem("Show", i => i.FolderPath == showPath);
43
44
if (show == null)
0 commit comments