mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-29 16:31:33 +00:00
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:
parent
15f1eb2914
commit
7148bab2bb
2 changed files with 7 additions and 2 deletions
|
@ -21,6 +21,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