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:
parent
ab3649739a
commit
7877bcbbe2
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue