Prevent NullRef for cases when media covers have nullable urls

(cherry picked from commit a26df9e9afa8d925c2ad62c126d4edebec7e4e54)
This commit is contained in:
Bogdan 2023-10-05 02:42:18 +03:00
parent 99dade3200
commit 0a5f0cab60
1 changed files with 6 additions and 0 deletions

View File

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