Bug 1581: Avoid exception in LongOperationFeedback if desktop is not ready

FEA: ItEr77S04BugFixing
This commit is contained in:
Manuel Rego Casasnovas 2012-12-03 14:55:01 +01:00
parent 9c1ba005fe
commit 2c51ef98a1

View file

@ -266,7 +266,7 @@ public class LongOperationFeedback {
if (current.isEnd()) {
return;
}
if (!desktop.isAlive()) {
if (!desktop.isAlive() || !desktop.isServerPushEnabled()) {
return;
}
try {