Merge pull request #180 from losiu97/fix/add-match-none

BUGFIX add MATCH_NONE to tag matching options
This commit is contained in:
Anton Stubenbord
2023-06-02 15:04:12 +02:00
committed by GitHub
7 changed files with 58 additions and 65 deletions

View File

@@ -104,7 +104,7 @@ class LocalMockApiServer {
"name": body?['name'],
"color": body?['color'],
"text_color": "#000000",
"match": "",
"match": body?['match'],
"matching_algorithm": body?['matching_algorithm'],
"is_insensitive": body?['is_insensitive'],
"is_inbox_tag": false,
@@ -129,7 +129,7 @@ class LocalMockApiServer {
"name": body?['name'],
"color": body?['color'],
"text_color": "#000000",
"match": "",
"match": body?['match'],
"matching_algorithm": body?['matching_algorithm'],
"is_insensitive": body?['is_insensitive'],
"is_inbox_tag": false,