1
0
Fork 0
mirror of https://gitlab.com/niansa/qcommsy.git synced 2025-03-06 20:53:33 +01:00

Fixed taskState::done detection

This commit is contained in:
niansa 2020-09-02 11:48:19 +02:00
parent ab3649739a
commit 7877bcbbe2

View file

@ -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;
}
}