Bug 1581: Avoid exception in LongOperationFeedback if desktop is not ready
FEA: ItEr77S04BugFixing
This commit is contained in:
parent
9c1ba005fe
commit
2c51ef98a1
1 changed files with 1 additions and 1 deletions
|
|
@ -266,7 +266,7 @@ public class LongOperationFeedback {
|
|||
if (current.isEnd()) {
|
||||
return;
|
||||
}
|
||||
if (!desktop.isAlive()) {
|
||||
if (!desktop.isAlive() || !desktop.isServerPushEnabled()) {
|
||||
return;
|
||||
}
|
||||
try {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue