mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
Fixed NPE error on some tournaments finish;
This commit is contained in:
parent
96cbaa1e99
commit
503f383963
1 changed files with 2 additions and 2 deletions
|
|
@ -298,8 +298,8 @@ public class Table implements Serializable {
|
|||
.setGameType(this.getGameType())
|
||||
.setDeckType(this.getDeckType())
|
||||
.setControllerName(this.getControllerName())
|
||||
.setStartTimeMs(this.getStartTime().getTime())
|
||||
.setEndTimeMs(this.getEndTime().getTime())
|
||||
.setStartTimeMs(this.getStartTime() != null ? this.getStartTime().getTime() : 0L)
|
||||
.setEndTimeMs(this.getEndTime() != null ? this.getEndTime().getTime() : 0L)
|
||||
.build();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue