mirror of https://github.com/lidarr/Lidarr
Prevent NullRef for cases when media covers have nullable urls
(cherry picked from commit a26df9e9afa8d925c2ad62c126d4edebec7e4e54)
This commit is contained in:
parent
99dade3200
commit
0a5f0cab60
|
@ -3,6 +3,7 @@ using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using NzbDrone.Common.Cache;
|
using NzbDrone.Common.Cache;
|
||||||
|
using NzbDrone.Common.Extensions;
|
||||||
using NzbDrone.Common.Http;
|
using NzbDrone.Common.Http;
|
||||||
using NzbDrone.Core.Configuration;
|
using NzbDrone.Core.Configuration;
|
||||||
|
|
||||||
|
@ -31,6 +32,11 @@ namespace NzbDrone.Core.MediaCover
|
||||||
|
|
||||||
public string RegisterUrl(string url)
|
public string RegisterUrl(string url)
|
||||||
{
|
{
|
||||||
|
if (url.IsNullOrWhiteSpace())
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
var hash = url.SHA256Hash();
|
var hash = url.SHA256Hash();
|
||||||
|
|
||||||
_cache.Set(hash, url, TimeSpan.FromHours(24));
|
_cache.Set(hash, url, TimeSpan.FromHours(24));
|
||||||
|
|
Loading…
Reference in New Issue