Skip to content

Commit

Permalink
Merge pull request #531 from xibosignage/release20
Browse files Browse the repository at this point in the history
Release 2.0.1
  • Loading branch information
dasgarner authored Apr 4, 2019
2 parents 7871f11 + 0a56e3d commit bd6f298
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Entity/Display.php
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ private function add()
'email_alert' => 0,
'alert_timeout' => 0,
'xmrChannel' => $this->xmrChannel,
'xmrPubKey' => $this->xmrPubKey,
'xmrPubKey' => ($this->xmrPubKey === null) ? '' : $this->xmrPubKey,
'lastCommandSuccess' => $this->lastCommandSuccess,
'macAddress' => $this->macAddress
]);
Expand Down Expand Up @@ -783,7 +783,7 @@ private function edit()
'storageAvailableSpace' => $this->storageAvailableSpace,
'storageTotalSpace' => $this->storageTotalSpace,
'xmrChannel' => $this->xmrChannel,
'xmrPubKey' => $this->xmrPubKey,
'xmrPubKey' => ($this->xmrPubKey === null) ? '' : $this->xmrPubKey,
'lastCommandSuccess' => $this->lastCommandSuccess,
'deviceName' => $this->deviceName,
'timeZone' => $this->timeZone,
Expand Down

0 comments on commit bd6f298

Please sign in to comment.