mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
Merge pull request #197 from gradido/login_15_04_2012
update code which produce error which last fix (._.);
This commit is contained in:
commit
ebd362f7b8
@ -192,7 +192,8 @@ void PendingTasksManager::checkForFinishedTasks(Poco::Timer& timer)
|
||||
auto json = transaction->getModel()->getResultJson();
|
||||
bool removeIt = false;
|
||||
if (!json.isNull()) {
|
||||
if (json->get("state").toString() == "success") {
|
||||
auto state = json->get("state");
|
||||
if (!state.isEmpty() && state.toString() == "success") {
|
||||
removeIt = true;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1 +1 @@
|
||||
Subproject commit ff412f735667b30233c0ce00d461f209ac7dde7c
|
||||
Subproject commit 924b51c87fea29d5aaf053af43251dab44c2eeb7
|
||||
Loading…
x
Reference in New Issue
Block a user