Remove no-op conversions

merge-requests/302/head
Jonas Platte 2 years ago
parent d74074ad53
commit adeb8ee425
No known key found for this signature in database
GPG Key ID: 7D261D771D915378

@ -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(_) => {}
}

Loading…
Cancel
Save