Handle FILE_MIGRATE_[0-9] errors

This commit is contained in:
Eduard Kuzmenko 2021-02-04 02:11:34 +02:00
parent 5b7634b671
commit ccb5a3e449

View File

@ -355,7 +355,7 @@ export class ApiManager {
this.invokeApi(method, params, options).then(deferred.resolve, rejectPromise);
}, rejectPromise);
} else if(error.code == 303) {
const newDcId = +error.type.match(/^(PHONE_MIGRATE_|NETWORK_MIGRATE_|USER_MIGRATE_)(\d+)/)[2];
const newDcId = +error.type.match(/^(PHONE_MIGRATE_|NETWORK_MIGRATE_|USER_MIGRATE_|FILE_MIGRATE_)(\d+)/)[2];
if(newDcId != dcId) {
if(options.dcId) {
options.dcId = newDcId;