Merge pull request #2254 from lbryio/fix-error-message
fix: missing spee.ch error
This commit is contained in:
commit
178330f3f4
2 changed files with 7 additions and 2 deletions
|
@ -22,6 +22,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
### Fixed
|
### 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))
|
- 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))
|
- Video position on previously viewed files ([#2240](https://github.com/lbryio/lbry-desktop/pull/2240))
|
||||||
|
|
||||||
|
|
|
@ -97,9 +97,13 @@ export const doUploadThumbnail = (filePath: string, nsfw: boolean) => (
|
||||||
batchActions(
|
batchActions(
|
||||||
{
|
{
|
||||||
type: ACTIONS.UPDATE_PUBLISH_FORM,
|
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)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue