Prevent NullRef for cases when media covers have nullable urls

pull/6080/head
Bogdan 8 months ago committed by Mark McDowall
parent 8c07f0d3d1
commit a26df9e9af

@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using NzbDrone.Common.Cache;
using NzbDrone.Common.Extensions;
using NzbDrone.Common.Http;
using NzbDrone.Core.Configuration;
@ -31,6 +32,11 @@ namespace NzbDrone.Core.MediaCover
public string RegisterUrl(string url)
{
if (url.IsNullOrWhiteSpace())
{
return null;
}
var hash = url.SHA256Hash();
_cache.Set(hash, url, TimeSpan.FromHours(24));

Loading…
Cancel
Save