Don't raise ReactorError for alt DCs

This commit is contained in:
Wizou 2023-03-09 22:32:57 +01:00
parent c646cac738
commit b63829393e
2 changed files with 3 additions and 2 deletions

View file

@ -347,7 +347,8 @@ namespace WTelegram
}
catch
{
RaiseUpdate(reactorError);
if (IsMainDC)
RaiseUpdate(reactorError);
lock (_pendingRpcs) // abort all pending requests
{
foreach (var rpc in _pendingRpcs.Values)