Skip to content

Commit

Permalink
Fixed Task/CommentOnTask collision
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredbuehler committed Sep 3, 2024
1 parent ab6dca7 commit bd4f4cc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Nothing so far

## [1.5.1](https://github.com/creecros/Mailmagik/releases/tag/1.5.1) - 2024-09-03

### Fixed

- [#47](https://github.com/creecros/Mailmagik/issues/47) Task mail parsing collides with CommentOnTask, makes it non-functional.

## [1.5.0](https://github.com/creecros/Mailmagik/releases/tag/1.5.0) - 2024-08-19

### Added
Expand Down
2 changes: 1 addition & 1 deletion Helper/MailHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public function getUnseenMails(&$mailbox, $prefix)
$method = $this->configModel->get('mailmagik_parse_via', '1');

if ($method == 2) {
return $this->searchMailbox($mailbox, 'UNSEEN SUBJECT "'. $prefix . '"');
return $this->searchMailbox($mailbox, 'UNSEEN SUBJECT "['. $prefix . '"');
} else {
return $this->searchMailbox($mailbox, 'UNSEEN TO ' . $prefix);
}
Expand Down
2 changes: 1 addition & 1 deletion Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function getPluginAuthor()

public function getPluginVersion()
{
return '1.5.0';
return '1.5.1';
}

public function getPluginDescription()
Expand Down

0 comments on commit bd4f4cc

Please sign in to comment.