Skip to content

Commit

Permalink
Fix Ray check
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronbushnell committed Apr 29, 2024
1 parent 906821a commit 195c3df
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.1.0",
"version": "0.1.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 @@ -44,7 +44,7 @@ public function actionIndex(): int
'composer_version' => 'N/A',
'dev_mode' => Craft::$app->getConfig()->getGeneral()->devMode,
'offline_mode' => ! Craft::$app->getIsLive(),
'ray_enabled' => App::env('RAY_ENABLED'),
'ray_enabled' => App::parseBooleanEnv('$RAY_ENABLED'),
],
'drivers' => [],
'addons' => collect($addons)->map(function ($addon) use ($updates) {
Expand Down

0 comments on commit 195c3df

Please sign in to comment.