From b6910b9428723058ed2abfdc1a388e12a8e1d0b9 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 58ab76984..2d03516ab 100644 --- a/src/feedback.cpp +++ b/src/feedback.cpp @@ -325,6 +325,7 @@ void feedback_reserved_tags (const std::string& tag) tag == "PENDING" || tag == "PRIORITY" || tag == "PROJECT" || + tag == "QUARTER" || tag == "READY" || tag == "SCHEDULED" || tag == "TAGGED" ||