From: nupplaPhil Date: Sat, 18 Jan 2020 09:46:53 +0000 (+0100) Subject: Fix Storage list X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=71985de5d514076570272884ccee8d8ba50481f9;p=friendica.git Fix Storage list --- diff --git a/src/Console/Storage.php b/src/Console/Storage.php index fcf55a9444..731dc79e5c 100644 --- a/src/Console/Storage.php +++ b/src/Console/Storage.php @@ -88,7 +88,7 @@ HELP; $isregisterd = false; foreach ($this->storageManager->listBackends() as $name => $class) { $issel = ' '; - if ($current === $class) { + if ($current::getName() == $name) { $issel = '*'; $isregisterd = true; };