Skip to content

Commit

Permalink
Env: PHP8 - fix RF getString for integer column
Browse files Browse the repository at this point in the history
  • Loading branch information
dasgarner committed Apr 11, 2023
1 parent 1d831ec commit a4216d1
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions lib/Xmds/Soap.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/*
* Copyright (c) 2023 Xibo Signage Ltd
* Copyright (C) 2023 Xibo Signage Ltd
*
* Xibo - Digital Signage - https://xibosignage.com
*
Expand All @@ -18,7 +18,6 @@
*
* You should have received a copy of the GNU Affero General Public License
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
*
*/

namespace Xibo\Xmds;
Expand Down Expand Up @@ -324,7 +323,7 @@ public function getDispatcher(): EventDispatcher
protected function doRequiredFiles(
$serverKey,
$hardwareKey,
$httpDownloads,
bool $httpDownloads,
bool $isSupportsDataUrl = false,
bool $isSupportsDependency = false
) {
Expand Down Expand Up @@ -651,7 +650,7 @@ protected function doRequiredFiles(
$parsedRow = $this->getSanitizer($row);
// Media
$path = $parsedRow->getString('path');
$id = $parsedRow->getString('id');
$id = $parsedRow->getParam('id');
$md5 = $row['MD5'];
$fileSize = $parsedRow->getInt('FileSize');
$released = $parsedRow->getInt('released');
Expand Down

0 comments on commit a4216d1

Please sign in to comment.