Fixed stack for bad IE

This commit is contained in:
Igor Zhukov 2016-06-07 22:01:45 +03:00
parent 681857c162
commit 8351161595

View File

@ -186,12 +186,7 @@ angular.module('izhukov.mtproto.wrapper', ['izhukov.utils', 'izhukov.mtproto'])
networkerPromise;
var cachedNetworker;
var stack = (new Error()).stack;
if (!stack) {
try {window.unexistingFunction();} catch (e) {
stack = e.stack || '';
}
}
var stack = (new Error()).stack || 'empty stack';
var performRequest = function (networker) {
return (cachedNetworker = networker).wrapApiCall(method, params, options).then(
function (result) {