check if the removeCallTimer is null before operating with it

cusax-fix
Yana Stamcheva 20 years ago
parent 5808701b98
commit 3a5a339c06

@ -220,7 +220,7 @@ else if (buttonName.equalsIgnoreCase("hangup")) {
if(activeCalls.get(call) != null) {
if(removeCallTimer.isRunning())
if(removeCallTimer != null && removeCallTimer.isRunning())
removeCallTimer.stop();
mainFrame.removeCallPanel(callPanel);

Loading…
Cancel
Save