1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-04 11:07:59 +02:00

Fixed: Movie poster in search results after adding

Fixes #8029
This commit is contained in:
Bogdan 2023-12-11 19:30:31 +02:00
parent e59fd1118f
commit 2673d1eee4

View File

@ -132,6 +132,8 @@ export const actionHandlers = handleThunks({
const updatedItem = _.cloneDeep(data);
updatedItem.internalId = updatedItem.id;
updatedItem.id = updatedItem.tmdbId;
delete updatedItem.images;
const actions = [
updateItem({ section: 'movies', ...data }),
updateItem({ section: 'addMovie', ...updatedItem }),