Skip to content

Commit

Permalink
1.4.1 : Fix migration
Browse files Browse the repository at this point in the history
  • Loading branch information
ralmn committed Nov 14, 2020
1 parent 280ac7e commit 5586980
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion octoprint_ikea_tradfri/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ def on_settings_migrate(self, target, current=None):
postponeDelay = self._settings.get(['postponeDelay']) or 30
connectionTimer = self._settings.get(['connection_timer']) or 5
on_done = self._settings.get(['on_done']) or True
on_failed = self._settings
on_failed = self._settings.get(['on_failed']) or False
icon = self._settings.get(['icon']) or "plug"
devices = [
dict(
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
plugin_name = "OctoPrint Ikea Tradfri"

# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
plugin_version = "1.4.1-dev"
plugin_version = "1.4.1"

# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
# module
Expand Down

0 comments on commit 5586980

Please sign in to comment.