mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07:00
Fixed bug where movies and moviefiles were not linked.
This commit is contained in:
parent
9aa8050627
commit
4fd062b4e3
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ namespace NzbDrone.Core.Tv
|
||||||
return Query.Where(m => m.MovieFileId == fileId).ToList();
|
return Query.Where(m => m.MovieFileId == fileId).ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetFileId(int episodeId, int fileId)
|
public void SetFileId(int fileId, int episodeId)
|
||||||
{
|
{
|
||||||
SetFields(new Movie { Id = episodeId, MovieFileId = fileId }, movie => movie.MovieFileId);
|
SetFields(new Movie { Id = episodeId, MovieFileId = fileId }, movie => movie.MovieFileId);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue