Skip to content

Commit

Permalink
Weather: incorrect path for asset, relates to xibosignage/xibo#3524
Browse files Browse the repository at this point in the history
  • Loading branch information
dasgarner committed Feb 14, 2025
1 parent 995296a commit 9a1cce1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/Xmds/Soap.php
Original file line number Diff line number Diff line change
Expand Up @@ -1094,8 +1094,12 @@ protected function doRequiredFiles(

// Add to paths added
$pathsAdded[] = $layoutId;
} catch (NotFoundException) {
$this->getLog()->error('Layout not found - ID: ' . $layoutId . ', skipping');
continue;
} catch (GeneralException $e) {
$this->getLog()->error('Layout not found - ID: ' . $layoutId . ', skipping.');
$this->getLog()->error('Cannot generate layout - ID: ' . $layoutId
. ', skipping, e = ' . $e->getMessage());
continue;
}
}
Expand Down

0 comments on commit 9a1cce1

Please sign in to comment.