Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

Commit

Permalink
Fix bug where 'endpoint' must be set
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalless committed Sep 23, 2020
1 parent 2b6863f commit 3508f4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AzureStorageServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function boot()
$config['name'],
$config['key']
);
if ($config['endpoint'] !== null) {
if (isset($config['endpoint'])) {
$endpoint .= sprintf("BlobEndpoint=%s;", $config['endpoint']);
}
$client = BlobRestProxy::createBlobService($endpoint);
Expand Down

0 comments on commit 3508f4f

Please sign in to comment.