Skip to content

Commit ec9f396

Browse files
authored
Merge pull request #68 from Arkemlar/patch-toImapUtf7
Fix superflous toImapUtf7 conversation
2 parents ec694b2 + 8b29d34 commit ec9f396

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)