From 8610268cd966fed07691419c46a3a0f83e07de9c Mon Sep 17 00:00:00 2001 From: Tomas Janousek Date: Tue, 24 Nov 2020 23:27:22 +0000 Subject: [PATCH] Add missing "QUARTER" to feedback_reserved_tags A while ago I noticed that 630a1530e0e0495f602ec5b687630b54945b2882 only added the QUARTER virtual tag to src/Task.cpp, and when I checked that again today, it was still missing from src/feedback.cpp, so I'm fixing that. --- src/feedback.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/feedback.cpp b/src/feedback.cpp index 449ebbd9f..8b3c4c12c 100644 --- a/src/feedback.cpp +++ b/src/feedback.cpp @@ -127,6 +127,7 @@ void feedback_reserved_tags (const std::string& tag) tag == "PENDING" || tag == "PRIORITY" || tag == "PROJECT" || + tag == "QUARTER" || tag == "READY" || tag == "SCHEDULED" || tag == "TAGGED" ||