Skip to content

Commit 241a7c8

Browse files
committed
Fix bug initialising the storage classes
1 parent 63bf112 commit 241a7c8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

custom_components/bluecon/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def notification_callback(notification: INotification):
2222
"bluecon": None
2323
}
2424

25-
bluecon = BlueConAPI.create_already_authed(notification_callback, ConfigEntryOAuthTokenStorage(entry), ConfigEntryNotificationInfoStorage(entry))
25+
bluecon = BlueConAPI.create_already_authed(notification_callback, ConfigEntryOAuthTokenStorage(hass, entry), ConfigEntryNotificationInfoStorage(hass, entry))
2626
await hass.async_add_executor_job(bluecon.startNotificationListener)
2727

2828
async def cleanup(event):

custom_components/bluecon/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"domain": "bluecon",
33
"name": "Fermax Blue",
4-
"version": "0.1.4",
4+
"version": "0.1.5",
55
"documentation": "https://hass-bluecon.afonsogarcia.dev/",
66
"issue_tracker": "https://github.com/AfonsoFGarcia/hass-bluecon/issues",
77
"requirements": ["bluecon==0.1.1", "aiohttp", "oscrypto", "protobuf", "http-ece"],

0 commit comments

Comments
 (0)