Skip to content

Commit

Permalink
Fix missing Anti-Features in modules.json
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler committed Nov 24, 2024
1 parent 2a64e79 commit 1f23692
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sync/__version__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
def get_version() -> str:
return "2.7.7"
return "2.7.8"


def get_version_code() -> int:
return 277
return 278


__all__ = [
Expand Down
3 changes: 2 additions & 1 deletion sync/model/TrackJson.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ def json(self):
return AttrDict(
type=self.type.name,
added=self.added,
source=self.source or None
source=self.source or None,
antifeatures=self.antifeatures or None
)

def write(self, file):
Expand Down

0 comments on commit 1f23692

Please sign in to comment.