Skip to content

Commit

Permalink
Fix boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronbushnell committed Sep 17, 2024
1 parent 29a8a4a commit 0c853df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "trendyminds/orbit-craft",
"type": "craft-plugin",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"authors": [
{
Expand Down
2 changes: 1 addition & 1 deletion src/console/controllers/SyncController.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function actionIndex(): int
'composer_version' => 'N/A',
'debug_mode' => Craft::$app->getConfig()->getGeneral()->devMode,
'maintenance_mode' => ! Craft::$app->getIsLive(),
'ray_enabled' => App::parseBooleanEnv('$RAY_ENABLED'),
'ray_enabled' => (bool) App::parseBooleanEnv('$RAY_ENABLED'),
'platform' => 'Yii',
'platform_version' => Craft::getVersion(),
'cms' => 'Craft CMS',
Expand Down

0 comments on commit 0c853df

Please sign in to comment.