mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
Fixed UI notification error for Missing.
This commit is contained in:
parent
df0082c077
commit
803a76ed0f
@ -32,7 +32,9 @@ protected EpisodeModuleWithSignalR(IEpisodeService episodeService, ICommandExecu
|
||||
|
||||
protected EpisodeResource GetEpisode(int id)
|
||||
{
|
||||
return _episodeService.GetEpisode(id).InjectTo<EpisodeResource>();
|
||||
var episode = _episodeService.GetEpisode(id);
|
||||
episode.EpisodeFile.LazyLoad();
|
||||
return episode.InjectTo<EpisodeResource>();
|
||||
}
|
||||
|
||||
public void Handle(EpisodeGrabbedEvent message)
|
||||
|
Loading…
Reference in New Issue
Block a user