Stop client timers if error show on client #PL-1988

This commit is contained in:
Yuriy Artamonov 2013-03-28 09:26:59 +00:00
parent fea2fff7c9
commit 97bf1af835

View File

@ -161,6 +161,10 @@ public class ApplicationConnection {
if (!applicationTimers.containsValue(this))
return;
// stop timer if error shown
if (errorShown)
return;
runTimerAction();
}