diff --git a/src/Loader/ElFinderLoader.php b/src/Loader/ElFinderLoader.php index 8b96ca9..4464682 100644 --- a/src/Loader/ElFinderLoader.php +++ b/src/Loader/ElFinderLoader.php @@ -140,7 +140,8 @@ public function decode($hash) { $volume = $this->bridge->getVolume($hash); - return (!empty($volume)) ? $volume->decode($hash) : false; + /** @var $volume \elFinderVolumeDriver */ + return (!empty($volume)) ? $volume->getPath($hash) : false; } public function setSession($session)