Skip to content

Commit

Permalink
Merge pull request #10 from AfonsoFGarcia/9-fcm-api-key-type-problem
Browse files Browse the repository at this point in the history
Change project ID from int to str
  • Loading branch information
AfonsoFGarcia authored Sep 30, 2024
2 parents 631b091 + 8359469 commit 5a4f23f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions custom_components/bluecon/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ async def async_step_user(self, user_input: dict[str, Any] | None = None) -> Flo
vol.Required(CONF_CLIENT_SECRET): str,
vol.Optional(CONF_API_KEY): str,
vol.Optional(CONF_SENDER_ID): int,
vol.Optional(CONF_APP_ID): int,
vol.Optional(CONF_APP_ID): str,
vol.Optional(CONF_PROJECT_ID): str,
vol.Optional(CONF_PACKAGE_NAME): str
}),
Expand Down Expand Up @@ -136,7 +136,7 @@ async def async_step_reconfigure(self, user_input: dict[str, Any] | None = None)
vol.Required(CONF_CLIENT_SECRET): str,
vol.Optional(CONF_API_KEY): str,
vol.Optional(CONF_SENDER_ID): int,
vol.Optional(CONF_APP_ID): int,
vol.Optional(CONF_APP_ID): str,
vol.Optional(CONF_PROJECT_ID): str,
vol.Optional(CONF_PACKAGE_NAME): str
}),
Expand Down Expand Up @@ -171,4 +171,4 @@ async def async_step_init(self, user_input: dict[str, Any] | None = None) -> Flo
vol.Required(CONF_LOCK_STATE_RESET, default = lockTimeout): int
}),
errors=error_info
)
)

0 comments on commit 5a4f23f

Please sign in to comment.