mirror of https://github.com/procxx/kepka.git
Fix applying poll updates.
This commit is contained in:
parent
17de6c1ff3
commit
c70a1f03de
|
@ -147,14 +147,16 @@ bool PollData::applyResults(const MTPPollResults &results) {
|
||||||
}) | ranges::to_vector;
|
}) | ranges::to_vector;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
auto newSolution = TextWithEntities{
|
if (results.vsolution()) {
|
||||||
results.vsolution().value_or_empty(),
|
auto newSolution = TextWithEntities{
|
||||||
Api::EntitiesFromMTP(
|
results.vsolution().value_or_empty(),
|
||||||
results.vsolution_entities().value_or_empty())
|
Api::EntitiesFromMTP(
|
||||||
};
|
results.vsolution_entities().value_or_empty())
|
||||||
if (solution != newSolution) {
|
};
|
||||||
solution = std::move(newSolution);
|
if (solution != newSolution) {
|
||||||
changed = true;
|
solution = std::move(newSolution);
|
||||||
|
changed = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (!changed) {
|
if (!changed) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -205,11 +207,9 @@ bool PollData::applyResultToAnswers(
|
||||||
changed = true;
|
changed = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!isMinResults || closed()) {
|
if (voters.is_correct() && !answer->correct) {
|
||||||
if (answer->correct != voters.is_correct()) {
|
answer->correct = voters.is_correct();
|
||||||
answer->correct = voters.is_correct();
|
changed = true;
|
||||||
changed = true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return changed;
|
return changed;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue