Use `CONF_SALT` correctly in config_flow validation (#99597)

pull/99599/head
Rami Mosleh 2023-09-04 15:59:18 +03:00 committed by GitHub
parent 7643820e59
commit 3b6811dab6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ def validate_input(entry: dict[str, str]) -> dict[str, str] | None:
send(
key=entry[CONF_DEVICE_KEY],
password=entry[CONF_PASSWORD],
salt=entry[CONF_PASSWORD],
salt=entry[CONF_SALT],
title="HA test",
message="Message delivered successfully",
)