mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 06:24:08 +00:00
Merge "Pass error data to SaveErrorHandler on error"
This commit is contained in:
commit
349b93f733
|
@ -744,8 +744,6 @@ ve.init.mw.ArticleTarget.prototype.saveFail = function ( doc, saveData, wasRetry
|
|||
return;
|
||||
}
|
||||
|
||||
editApi = ve.getProp( data, 'visualeditoredit', 'edit' ) || {};
|
||||
|
||||
// Handle token errors
|
||||
if ( data.error && data.error.code === 'badtoken' ) {
|
||||
if ( wasRetry ) {
|
||||
|
@ -782,6 +780,8 @@ ve.init.mw.ArticleTarget.prototype.saveFail = function ( doc, saveData, wasRetry
|
|||
return;
|
||||
}
|
||||
|
||||
editApi = ve.getProp( data, 'visualeditoredit', 'edit' ) || data.error || {};
|
||||
|
||||
for ( name in saveErrorHandlerFactory.registry ) {
|
||||
handler = saveErrorHandlerFactory.lookup( name );
|
||||
if ( handler.static.matchFunction( editApi ) ) {
|
||||
|
|
|
@ -26,7 +26,7 @@ OO.initClass( ve.init.mw.SaveErrorHandler );
|
|||
* @static
|
||||
* @inheritable
|
||||
* @method
|
||||
* @param {Object} editApi Edit API response
|
||||
* @param {Object} editApi Edit API response, or error data
|
||||
* @return {boolean}
|
||||
*/
|
||||
ve.init.mw.SaveErrorHandler.static.matchFunction = null;
|
||||
|
@ -37,7 +37,7 @@ ve.init.mw.SaveErrorHandler.static.matchFunction = null;
|
|||
* @static
|
||||
* @inheritable
|
||||
* @method
|
||||
* @param {Object} editApi Edit API response
|
||||
* @param {Object} editApi Edit API response, or error data
|
||||
* @param {ve.init.mw.ArticleTarget} target Target
|
||||
*/
|
||||
ve.init.mw.SaveErrorHandler.static.process = null;
|
||||
|
|
Loading…
Reference in a new issue