1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-09-11 22:19:10 +02:00

Remove no-op conversions

This commit is contained in:
Jonas Platte 2022-02-12 15:03:07 +01:00
parent d74074ad53
commit adeb8ee425
No known key found for this signature in database
GPG key ID: 7D261D771D915378

View file

@ -814,7 +814,7 @@ pub async fn send_transaction_message_route(
// Check if this is a new transaction id
if db
.transaction_ids
.existing_txnid(&sender, None, (&*message_id).into())?
.existing_txnid(&sender, None, &message_id)?
.is_some()
{
continue;
@ -862,7 +862,7 @@ pub async fn send_transaction_message_route(
// Save transaction id with empty data
db.transaction_ids
.add_txnid(&sender, None, (&*message_id).into(), &[])?;
.add_txnid(&sender, None, &message_id, &[])?;
}
Edu::_Custom(_) => {}
}