diff --git a/src/FolderRepository.php b/src/FolderRepository.php index edd1a69..d20419f 100644 --- a/src/FolderRepository.php +++ b/src/FolderRepository.php @@ -20,7 +20,7 @@ public function __construct( */ public function find(string $path): ?FolderInterface { - return $this->get(Str::toImapUtf7($path))->first(); + return $this->get($path)->first(); } /** @@ -28,7 +28,7 @@ public function find(string $path): ?FolderInterface */ public function findOrFail(string $path): FolderInterface { - return $this->get(Str::toImapUtf7($path))->firstOrFail(); + return $this->get($path)->firstOrFail(); } /**