Quote Originally Posted by Vukimukinukiduki View Post
I think devs just can't fix this, my profession lies far from programming, but I have feeling that part of code responsible for dropping connection and other things with 2002 error is patched so many times that they can't do something about it, if they would do than they gonna broke another thing.
We don't know how it is implemented. If it is simple constant like:

int32_t minutes = {15};

Then it is very easy to fix and i doubt that this will break other things. You could mitigate it with:

int32_t minutes = {1500000};


Cheers