Skip to content

Commit 8b29d34

Browse files
authored
Fix superflous toImapUtf7 conversation
1 parent d76ff18 commit 8b29d34

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/FolderRepository.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ public function __construct(
2020
*/
2121
public function find(string $path): ?FolderInterface
2222
{
23-
return $this->get(Str::toImapUtf7($path))->first();
23+
return $this->get($path)->first();
2424
}
2525

2626
/**
2727
* {@inheritDoc}
2828
*/
2929
public function findOrFail(string $path): FolderInterface
3030
{
31-
return $this->get(Str::toImapUtf7($path))->firstOrFail();
31+
return $this->get($path)->firstOrFail();
3232
}
3333

3434
/**

0 commit comments

Comments
 (0)