Skip to content

Commit

Permalink
Enough-Software#238 Remove extra double quotes for search query dates
Browse files Browse the repository at this point in the history
  • Loading branch information
ignaciogarcia committed Apr 9, 2024
1 parent 6646969 commit cb25f35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/imap/imap_search.dart
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ class _TextSearchTerm extends SearchTerm {

class _DateSearchTerm extends SearchTerm {
_DateSearchTerm(String name, DateTime value)
: super('$name "${DateCodec.encodeSearchDate(value)}"');
: super('$name ${DateCodec.encodeSearchDate(value)}');
}

/// Set the charset to UTF8
Expand Down

0 comments on commit cb25f35

Please sign in to comment.