Skip to content

Commit 60a7da4

Browse files
author
Tyler King
authored
Fix for gnikyt#613 where config is blank on install (gnikyt#649)
1 parent a83d8b8 commit 60a7da4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ShopifyApp/Traits/ConfigAccessible.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ trait ConfigAccessible
2222
public function getConfig(string $key, $shop = null)
2323
{
2424
$this->config = array_merge(
25-
Config::get('shopify-app'),
25+
Config::get('shopify-app', []),
2626
['user_model' => Config::get('auth.providers.users.model')]
2727
);
2828

0 commit comments

Comments
 (0)