diff --git a/src/redux/reducers/download_reducer.js b/src/redux/reducers/download_reducer.js index dfb98cf..8f4a983 100644 --- a/src/redux/reducers/download_reducer.js +++ b/src/redux/reducers/download_reducer.js @@ -25,10 +25,9 @@ export const downloadReducer = createReducer({ [SET_DOWNLOAD_BEGIN]: (state, action) => { return { ...state, + ...defaultDownloadState, DownloadActive: true, DownloadName: action.payload.name, - DownloadProgress: 0.0, - DownloadResult: null, DownloadType: action.payload.type, DownloadURL: action.payload.url, }