Skip to content

Commit

Permalink
Fix default options
Browse files Browse the repository at this point in the history
  • Loading branch information
TorbenLundsgaard committed Mar 10, 2024
1 parent 1c0f9ac commit 62d164e
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/Options.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,10 @@ final class Options {
],
],
'premium' => [
'addon_installed' => 0,
'addon_installed' => [
'default' => true,
'type' => 'boolean',
],
],
];

Expand Down Expand Up @@ -289,10 +292,6 @@ private function process_generic_options( array $options ): array {
}
}

if ( ! isset( $options['integrations'] ) ) {
$options['integrations'] = [];
}

return $options;
}

Expand Down

0 comments on commit 62d164e

Please sign in to comment.