fix: missing spee.ch error

Also, decided to reset the publish status. Unless wee for sure know it's a spee.ch issue, we should let them upload again (what If i selected an mp4 or other unsupported type?) They can still manually choose the manual URL method.
This commit is contained in:
Thomas Zarebczan 2019-02-01 02:17:23 -05:00
parent 15f1eb2914
commit 7148bab2bb
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)
)
);