fix: malformed pushrule error when event does not trigger any actions

next
Timo Kösters 2021-04-11 10:50:30 +02:00
parent 588de12d79
commit b0ea692706
No known key found for this signature in database
GPG Key ID: 24DA7517711A2BA4
1 changed files with 3 additions and 8 deletions

View File

@ -216,16 +216,11 @@ pub async fn send_push_notice(
notify = Some(n);
}
let notify = notify.ok_or_else(|| {
Error::bad_database(
r#"Malformed pushrule contains none of these actions: ["dont_notify", "notify", "coalesce"]"#,
)
})?;
if notify {
if notify == Some(true) {
send_notice(unread, pusher, tweaks, pdu, db).await?;
}
// Else the event triggered no actions
Ok(())
}