Remove unuseful dropping auth key

Close #1297
This commit is contained in:
Igor Zhukov 2016-12-17 13:00:10 +03:00
parent 7d68cc1da7
commit 40a8877953

View File

@ -1247,15 +1247,6 @@ angular.module('izhukov.mtproto', ['izhukov.utils'])
return result return result
}, },
function (error) { function (error) {
if (error.status == 404 &&
(error.data || '').indexOf('nginx/0.3.33') != -1) {
Storage.remove(
'dc' + self.dcID + '_server_salt',
'dc' + self.dcID + '_auth_key'
).then(function () {
AppRuntimeManager.reload()
})
}
if (!error.message && !error.type) { if (!error.message && !error.type) {
error = angular.extend(baseError, {type: 'NETWORK_BAD_REQUEST', originalError: error}) error = angular.extend(baseError, {type: 'NETWORK_BAD_REQUEST', originalError: error})
} }