Skip to content

Commit

Permalink
improves version check
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Aug 8, 2024
1 parent 87b4f5e commit 4e1d360
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.0"
__version__ = "0.3.1"
2 changes: 1 addition & 1 deletion frontend/wikigrid.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def check_wiki_version(self, wiki_state):
mw_version = f"MediaWiki {mw_version}"
row = self.lod_grid.get_row_for_key(wiki_state.row_no)
if row:
ex_version = row["version"]
ex_version = wiki_state.wiki_user.version
if ex_version == mw_version:
self.lod_grid.update_cell(
wiki_state.row_no, "version", f"{mw_version}✅"
Expand Down

0 comments on commit 4e1d360

Please sign in to comment.