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

Fixed: Downloading status post-adding movie

This commit is contained in:
Bogdan 2023-12-11 19:27:05 +02:00
parent c1fd33b152
commit e59fd1118f

View File

@ -130,6 +130,7 @@ export const actionHandlers = handleThunks({
promise.done((data) => {
const updatedItem = _.cloneDeep(data);
updatedItem.internalId = updatedItem.id;
updatedItem.id = updatedItem.tmdbId;
const actions = [
updateItem({ section: 'movies', ...data }),