More missed lowercase key spots

This commit is contained in:
Jack Kingsman
2026-02-16 18:24:25 -08:00
parent 54a03a9467
commit 591d333970

View File

@@ -216,7 +216,7 @@ async def on_new_contact(event: "Event") -> None:
logger.debug("New contact: %s", public_key[:12])
contact_data = {
**Contact.from_radio_dict(public_key, payload, on_radio=True),
**Contact.from_radio_dict(public_key.lower(), payload, on_radio=True),
"last_seen": int(time.time()),
}
await ContactRepository.upsert(contact_data)