mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Fixed UI notification error for Missing.
This commit is contained in:
parent
df0082c077
commit
803a76ed0f
1 changed files with 3 additions and 1 deletions
|
@ -32,7 +32,9 @@ namespace NzbDrone.Api.Episodes
|
|||
|
||||
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…
Add table
Add a link
Reference in a new issue