Fix Backups

This commit is contained in:
notCharles
2024-04-27 22:08:51 -04:00
parent da08b60f20
commit 137b6040ab
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ class BackupManager
/**
* Creates a new daemon adapter.
*/
public function createDaemonAdapter(array $config): FilesystemAdapter
public function createWingsAdapter(array $config): FilesystemAdapter
{
return new InMemoryFilesystemAdapter();
}

View File

@ -34,7 +34,7 @@ return [
'disks' => [
// There is no configuration for the local disk for Daemon. That configuration
// is determined by the Daemon configuration, and not the Panel.
'daemon' => [
'wings' => [
'adapter' => Backup::ADAPTER_DAEMON,
],