fix: fix importvcard job (#5151)

This commit is contained in:
Alexis Saettler
2021-05-03 10:32:11 +02:00
committed by GitHub
parent 56572bbd57
commit cf8041cfe7
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -240,7 +240,7 @@ class SettingsController
throw new AccountLimitException();
}
$filename = $request->file('vcard')->store('imports', 'public');
$filename = $request->file('vcard')->store('imports', config('filesystems.default'));
$importJob = $account->importjobs()->create([
'user_id' => auth()->user()->id,