Merge pull request #1911 from deltachat/fix_error_asm

Tune down error event on failed dc_continue_key_transfer to a warn
This commit is contained in:
bjoern
2020-09-21 18:27:40 +02:00
committed by GitHub

View File

@@ -1817,7 +1817,7 @@ pub unsafe extern "C" fn dc_continue_key_transfer(
{
Ok(()) => 1,
Err(err) => {
error!(&ctx, "dc_continue_key_transfer: {}", err);
warn!(&ctx, "dc_continue_key_transfer: {}", err);
0
}
}