fix typo in file_info reducer

This commit is contained in:
Jeremy Kauffman 2017-07-25 16:41:21 -04:00
parent a3ce714af1
commit 1ccd03ea59

View file

@ -58,7 +58,7 @@ reducers[types.DOWNLOADING_STARTED] = function(state, action) {
const { uri, outpoint, fileInfo } = action.data;
const newByOutpoint = Object.assign({}, state.byOutpoint);
const newDownloading = Object.assign({}, state.downloadingByOutpoin);
const newDownloading = Object.assign({}, state.downloadingByOutpoint);
const newLoading = Object.assign({}, state.urisLoading);
newDownloading[outpoint] = true;