Merge pull request #2254 from lbryio/fix-error-message

fix: missing spee.ch error
This commit is contained in:
Sean Yesmunt 2019-02-01 11:04:10 -05:00 committed by GitHub
commit 178330f3f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View file

@ -22,6 +22,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)
)
);