1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-28 10:51:48 +00:00

Fixed: Populate Collection on every Resource Map

Fixes #4162
This commit is contained in:
Qstick 2020-02-17 20:42:36 -05:00 committed by GitHub
parent 4c5490df94
commit b670bffa1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -186,7 +186,8 @@ public static MovieResource ToResource(this Movie model, IUpgradableSpecificatio
Ratings = model.Ratings, Ratings = model.Ratings,
MovieFile = movieFile, MovieFile = movieFile,
YouTubeTrailerId = model.YouTubeTrailerId, YouTubeTrailerId = model.YouTubeTrailerId,
Studio = model.Studio Studio = model.Studio,
Collection = model.Collection
}; };
} }