diff --git a/libcommsy.hpp b/libcommsy.hpp index 7fc3acc..cf2b780 100644 --- a/libcommsy.hpp +++ b/libcommsy.hpp @@ -255,7 +255,7 @@ taskState::type get_post_taskState(GumboNode *node) { return taskState::todo; } else if (classAttr.find("inProgress") != std::string::npos) { return taskState::inProgress; - } else if (classAttr.find("DONE(?)") != std::string::npos) { // TODO + } else if (classAttr.find("done") != std::string::npos) { return taskState::done; } }