Improved API error debug info
This commit is contained in:
parent
c335156be5
commit
c7f725a9e0
@ -204,7 +204,7 @@ angular.module('izhukov.mtproto', ['izhukov.utils'])
|
|||||||
transformRequest: null
|
transformRequest: null
|
||||||
});
|
});
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
requestPromise = $q.reject(e);
|
requestPromise = $q.reject({code: 406, type: 'NETWORK_BAD_RESPONSE', originalError: e});
|
||||||
}
|
}
|
||||||
return requestPromise.then(
|
return requestPromise.then(
|
||||||
function (result) {
|
function (result) {
|
||||||
|
@ -108,7 +108,7 @@ angular.module('izhukov.mtproto.wrapper', ['izhukov.utils', 'izhukov.mtproto'])
|
|||||||
|
|
||||||
if (!options.noErrorBox) {
|
if (!options.noErrorBox) {
|
||||||
error.input = method;
|
error.input = method;
|
||||||
error.stack = error.stack || (new Error()).stack;
|
error.stack = error.originalError && error.originalError.stack || error.stack || (new Error()).stack;
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
if (!error.handled) {
|
if (!error.handled) {
|
||||||
ErrorService.show({error: error});
|
ErrorService.show({error: error});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user