fix: missing spee.ch error #2254

Merged
tzarebczan merged 1 commit from fix-error-message into master 2019-02-01 17:04:10 +01:00
2 changed files with 7 additions and 2 deletions

View file

@ -21,6 +21,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixed
- Error message when thumbupload failed([#2254](https://github.com/lbryio/lbry-desktop/pull/2254))
- Flow errors ([#2213](https://github.com/lbryio/lbry-desktop/pull/2213))
- Video position on previously viewed files ([#2240](https://github.com/lbryio/lbry-desktop/pull/2240))

View file

@ -97,9 +97,13 @@ export const doUploadThumbnail = (filePath: string, nsfw: boolean) => (
batchActions(
{
type: ACTIONS.UPDATE_PUBLISH_FORM,
data: { uploadThumbnailStatus: THUMBNAIL_STATUSES.API_DOWN },
data: {
uploadThumbnailStatus: THUMBNAIL_STATUSES.READY,
thumbnail: '',
nsfw: false,
},
},
doError(MODALS.ERROR, { error })
doError(error)
)
);