mirror of
https://github.com/Radarr/Radarr.git
synced 2025-04-23 22:17:15 -04:00
Fixed: Manual Interaction Required with possible null movie
Prevent a NullRef when the notification is sent due to an invalid movie title Fixes #10053
This commit is contained in:
parent
e8c925274a
commit
0c654377f4
1 changed files with 2 additions and 2 deletions
|
@ -254,7 +254,7 @@ namespace NzbDrone.Core.Notifications
|
|||
|
||||
public void Handle(ManualInteractionRequiredEvent message)
|
||||
{
|
||||
var movie = message.RemoteMovie.Movie;
|
||||
var movie = message.RemoteMovie?.Movie;
|
||||
var mess = "";
|
||||
|
||||
if (movie != null)
|
||||
|
@ -276,7 +276,7 @@ namespace NzbDrone.Core.Notifications
|
|||
{
|
||||
Message = mess,
|
||||
Movie = movie,
|
||||
Quality = message.RemoteMovie.ParsedMovieInfo.Quality,
|
||||
Quality = message.RemoteMovie?.ParsedMovieInfo.Quality,
|
||||
RemoteMovie = message.RemoteMovie,
|
||||
TrackedDownload = message.TrackedDownload,
|
||||
DownloadClientInfo = message.TrackedDownload.DownloadItem?.DownloadClientInfo,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue