Skip to content

Commit 563be9c

Browse files
authored
Merge pull request #61 from avored/dev
Fixed DB Connection Check
2 parents 0273fe3 + c9cf608 commit 563be9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Theme/Provider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function boot()
3232
$dbConnectError = true;
3333
}
3434

35-
if (false === $dbConnectError) {
35+
if (false === $dbConnectError && Schema::hasTable('configurations')) {
3636
$repository = $this->app->get(ConfigurationInterface::class);
3737
$activeTheme = $repository->getValueByKey('active_theme_identifier');
3838
}

0 commit comments

Comments
 (0)