Skip to content

Commit

Permalink
Fix redirect_port bug with 0.4.41
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexxIT committed Feb 26, 2021
1 parent d963821 commit eba4073
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion custom_components/dataplicity/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ def fake_install(*args, **kwargs):

try:
package.install_package = fake_install
await async_process_requirements(hass, DOMAIN, [DOMAIN])
# latest dataplicity has bug with redirect_port
await async_process_requirements(hass, DOMAIN, ['dataplicity==0.4.40'])
return True
except:
return False
Expand Down

0 comments on commit eba4073

Please sign in to comment.