mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Fixed XBMC updating
This commit is contained in:
parent
66bce4b51e
commit
9722506aca
3 changed files with 28 additions and 20 deletions
|
@ -72,7 +72,13 @@ namespace NzbDrone.Core.MediaFiles
|
|||
{
|
||||
try
|
||||
{
|
||||
var series = _parsingService.GetSeries(videoFile);
|
||||
var series = _parsingService.GetSeries(Path.GetFileNameWithoutExtension(videoFile));
|
||||
|
||||
if (series == null)
|
||||
{
|
||||
_logger.Trace("Unknown Series for file: {0}", videoFile);
|
||||
}
|
||||
|
||||
ProcessVideoFile(videoFile, series);
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue