We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ec694b2 + 8b29d34 commit ec9f396Copy full SHA for ec9f396
1 file changed
src/FolderRepository.php
@@ -20,15 +20,15 @@ public function __construct(
20
*/
21
public function find(string $path): ?FolderInterface
22
{
23
- return $this->get(Str::toImapUtf7($path))->first();
+ return $this->get($path)->first();
24
}
25
26
/**
27
* {@inheritDoc}
28
29
public function findOrFail(string $path): FolderInterface
30
31
- return $this->get(Str::toImapUtf7($path))->firstOrFail();
+ return $this->get($path)->firstOrFail();
32
33
34
0 commit comments