We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 98187b5 + 8f779a5 commit 0475b0cCopy full SHA for 0475b0c
1 file changed
apps/files_external/lib/Command/StorageAuthBase.php
@@ -52,7 +52,7 @@ private function getPasswordOption(InputInterface $input): ?string {
52
protected function createStorage(InputInterface $input, OutputInterface $output): array {
53
try {
54
/** @var StorageConfig|null $mount */
55
- $mount = $this->globalService->getStorage($input->getArgument('mount_id'));
+ $mount = $this->globalService->getStorage((int)$input->getArgument('mount_id'));
56
} catch (NotFoundException $e) {
57
$output->writeln('<error>Mount not found</error>');
58
return [null, null];
0 commit comments