Skip to content

Commit

Permalink
Imap backend 16.1 - Drafts error typo
Browse files Browse the repository at this point in the history
  • Loading branch information
matidau committed Jun 6, 2024
1 parent 21a08fe commit 2225393
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backend/imap/imap.php
Original file line number Diff line number Diff line change
Expand Up @@ -1637,10 +1637,10 @@ public function StatMessage($folderid, $id) {

// 'draft'
if (isset($overview[0]->draft) && $overview[0]->draft) {
$message["draft"] = 1;
$entry["draft"] = 1;
}
else {
$message["draft"] = 0;
$entry["draft"] = 0;
}

return $entry;
Expand Down

0 comments on commit 2225393

Please sign in to comment.