IDEMPIERE-4710 : NPE in ProcessInfo.getLastServerRebootDate() (#597)
This commit is contained in:
parent
60bcc24bb4
commit
bd7600fcd9
|
@ -920,7 +920,7 @@ public class ProcessInfo implements Serializable
|
|||
.setOnlyActiveRecords(true)
|
||||
.first();
|
||||
|
||||
return lastServerSession.getCreated();
|
||||
return lastServerSession != null ? lastServerSession.getCreated() : null;
|
||||
}
|
||||
|
||||
private IProcessUI processUI;
|
||||
|
|
Loading…
Reference in New Issue