Skip to content

Commit

Permalink
fix: glutanimate#201 field history thought we were old version
Browse files Browse the repository at this point in the history
Signed-off-by: thiswillbeyourgithub <26625900+thiswillbeyourgithub@users.noreply.github.com>
  • Loading branch information
thiswillbeyourgithub committed Apr 3, 2024
1 parent 7b98183 commit 9b9f334
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/editor_field_history/editor_field_history.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
from anki.hooks import addHook

from anki import version
ANKI21 = version.startswith("2.1")
ANKI21 = version.startswith("2.1") or int(version.split(".")[0]) >= 23


if ANKI21:
Expand Down

0 comments on commit 9b9f334

Please sign in to comment.