Skip to content

Commit

Permalink
🚑 Hotfix for property setter
Browse files Browse the repository at this point in the history
  • Loading branch information
jurialmunkey committed Nov 13, 2023
1 parent f57ef23 commit 1eaccdc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion addon.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon id="script.skinvariables"
version="1.2.0"
version="1.2.1"
name="Skin Variables"
provider-name="jurialmunkey">
<requires>
Expand Down
4 changes: 4 additions & 0 deletions resources/lib/viewtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ def addon_meta(self):
self._addon_meta = loads(self.addon_content) or {}
return self._addon_meta

@addon_meta.setter
def addon_meta(self, value):
self._addon_meta = value

@property
def prefix(self):
try:
Expand Down

0 comments on commit 1eaccdc

Please sign in to comment.