Skip to content

Commit

Permalink
Fix bug when large object variables not defined (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
sausin committed May 22, 2020
1 parent b899a8b commit 2d4998e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/OVHServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@ protected function makeFileSystem(Container $container, bool $cache): Filesystem

return new Filesystem(
$adapter,
[
array_filter([
'swiftLargeObjectThreshold' => $this->config->getSwiftLargeObjectThreshold(),
'swiftSegmentSize' => $this->config->getSwiftSegmentSize(),
'swiftSegmentContainer' => $this->config->getSwiftSegmentContainer(),
]
])
);
}
}

0 comments on commit 2d4998e

Please sign in to comment.