fix: better download error message
If the SDK produces an uncaught error, show this also. It will help us with debugging.
This commit is contained in:
parent
3776620564
commit
672dd4fd79
1 changed files with 2 additions and 1 deletions
|
@ -174,6 +174,7 @@ function handleLoadVideoError(uri, errorType = '') {
|
|||
return (dispatch, getState) => {
|
||||
// suppress error when another media is playing
|
||||
const { playingUri } = getState().content;
|
||||
const errorText = typeof errorType === 'object' ? errorType.message : errorType;
|
||||
if (playingUri && playingUri === uri) {
|
||||
dispatch({
|
||||
type: ACTIONS.LOADING_VIDEO_FAILED,
|
||||
|
@ -186,7 +187,7 @@ function handleLoadVideoError(uri, errorType = '') {
|
|||
} else {
|
||||
dispatch(
|
||||
doError(
|
||||
`Failed to download ${uri}, please try again or see error details:\n\n${errorType}\n\nIf this problem persists, visit https://lbry.io/support for help. `
|
||||
`Failed to download ${uri}, please try again or see error details:\n\n${errorText}\n\nIf this problem persists, visit https://lbry.io/support for help. `
|
||||
)
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue