mirror of
https://github.com/ankitects/anki.git
synced 2025-11-13 08:07:11 -05:00
don't warn about missing history if log > card reps
such a state will happen if same card reviewed in two locations, and is not an error
This commit is contained in:
parent
e2300abb82
commit
0f2eb2d056
1 changed files with 1 additions and 1 deletions
|
|
@ -847,7 +847,7 @@ border: 1px solid #000; padding: 3px; '>%s</div>""" % rep
|
||||||
"%d%%" % (factor/10) if factor else "",
|
"%d%%" % (factor/10) if factor else "",
|
||||||
cs.time(taken)) + "</tr>"
|
cs.time(taken)) + "</tr>"
|
||||||
s += "</table>"
|
s += "</table>"
|
||||||
if cnt != self.card.reps:
|
if cnt < self.card.reps:
|
||||||
s += _("""\
|
s += _("""\
|
||||||
Note: Some of the history is missing. For more information, \
|
Note: Some of the history is missing. For more information, \
|
||||||
please see the browser documentation.""")
|
please see the browser documentation.""")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue