Prevent NullRef for cases when media covers have nullable urls

(cherry picked from commit a26df9e9afa8d925c2ad62c126d4edebec7e4e54)
pull/4177/head
Bogdan 7 months ago
parent 99dade3200
commit 0a5f0cab60

@ -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