mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 04:59:35 -07:00
Fixed: Exception when parsing Quality in release title with colon
This commit is contained in:
parent
724ece54c8
commit
4d90daebf1
2 changed files with 13 additions and 1 deletions
|
@ -71,6 +71,17 @@ namespace NzbDrone.Common.Extensions
|
||||||
return string.Equals(firstPath.CleanFilePath(), secondPath.CleanFilePath(), comparison.Value);
|
return string.Equals(firstPath.CleanFilePath(), secondPath.CleanFilePath(), comparison.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static string GetPathExtension(this string path)
|
||||||
|
{
|
||||||
|
var idx = path.LastIndexOf('.');
|
||||||
|
if (idx == -1 || idx == path.Length - 1)
|
||||||
|
{
|
||||||
|
return string.Empty;
|
||||||
|
}
|
||||||
|
|
||||||
|
return path.Substring(idx);
|
||||||
|
}
|
||||||
|
|
||||||
public static string GetRelativePath(this string parentPath, string childPath)
|
public static string GetRelativePath(this string parentPath, string childPath)
|
||||||
{
|
{
|
||||||
if (!parentPath.IsParentPath(childPath))
|
if (!parentPath.IsParentPath(childPath))
|
||||||
|
|
|
@ -2,6 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using NLog;
|
using NLog;
|
||||||
|
using NzbDrone.Common.Disk;
|
||||||
using NzbDrone.Common.Extensions;
|
using NzbDrone.Common.Extensions;
|
||||||
using NzbDrone.Common.Instrumentation;
|
using NzbDrone.Common.Instrumentation;
|
||||||
using NzbDrone.Core.MediaFiles;
|
using NzbDrone.Core.MediaFiles;
|
||||||
|
@ -232,7 +233,7 @@ namespace NzbDrone.Core.Parser
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
result.Quality = MediaFileExtensions.GetQualityForExtension(Path.GetExtension(name));
|
result.Quality = MediaFileExtensions.GetQualityForExtension(name.GetPathExtension());
|
||||||
result.QualityDetectionSource = QualityDetectionSource.Extension;
|
result.QualityDetectionSource = QualityDetectionSource.Extension;
|
||||||
}
|
}
|
||||||
catch (ArgumentException)
|
catch (ArgumentException)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue