Fix regression around direct path DMs

This commit is contained in:
Jack Kingsman
2026-03-06 15:41:47 -08:00
parent 819470cb40
commit 3144910cd9
2 changed files with 57 additions and 1 deletions
+1 -1
View File
@@ -871,7 +871,7 @@ async def _process_direct_message(
their_public_key=contact.public_key,
our_public_key=our_public_key.hex(),
received_at=timestamp,
path=packet_info.path.hex() if packet_info.path else None,
path=packet_info.path.hex() if packet_info else None,
outgoing=is_outgoing,
)