This commit is contained in:
timokoesters 2020-06-26 16:15:18 +02:00
parent 05f1f73e10
commit 54ad1fbed9
No known key found for this signature in database
GPG key ID: 24DA7517711A2BA4
3 changed files with 0 additions and 20 deletions

View file

@ -707,8 +707,6 @@ pub fn upload_keys_route(
if db.users.get_device_keys(user_id, device_id)?.is_none() {
db.users
.add_device_keys(user_id, device_id, device_keys, &db.globals)?;
} else {
println!("Key from {} was skipped: {:?}", user_id, device_keys);
}
}
@ -3125,4 +3123,3 @@ pub fn options_route(
) -> ConduitResult<send_event_to_device::Response> {
Ok(send_event_to_device::Response.into())
}