Add retry message to publish error
This commit is contained in:
parent
7778896a64
commit
7c3ff32496
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ export default function apiPublishCallViaWeb(
|
||||||
};
|
};
|
||||||
xhr.onerror = () => {
|
xhr.onerror = () => {
|
||||||
window.store.dispatch(doUpdateUploadProgress(undefined, params));
|
window.store.dispatch(doUpdateUploadProgress(undefined, params));
|
||||||
reject(new Error(__('There was a problem with your upload')));
|
reject(new Error(__('There was a problem with your upload. Please try again.')));
|
||||||
};
|
};
|
||||||
|
|
||||||
xhr.onabort = () => {
|
xhr.onabort = () => {
|
||||||
|
|
Loading…
Reference in a new issue