mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
finished message should use cutoff + 24hrs
This commit is contained in:
parent
6f8a5d6a24
commit
6d2e32e2df
1 changed files with 1 additions and 1 deletions
|
@ -1057,7 +1057,7 @@ where id = :id""", vals)
|
|||
newCount = self.s.scalar("""
|
||||
select count() from cards where relativeDelay = 2 and type != -1""")
|
||||
newCardsTomorrow = min(newCount, self.newCardsPerDay)
|
||||
cards = self.cardsDueBy(time.time() + 86400)
|
||||
cards = self.cardsDueBy(self.dueCutoff + 86400)
|
||||
msg = _('''\
|
||||
<style>b { color: #00f; }</style>
|
||||
At this time tomorrow:<br>
|
||||
|
|
Loading…
Reference in a new issue