forked from jmug/stoatchat
change how webhook information is in the webhook
This commit is contained in:
@@ -9,7 +9,7 @@ use rocket::serde::json::Json;
|
||||
pub async fn req(db: &Db, target: Ref, token: String) -> Result<Json<Webhook>> {
|
||||
let webhook = target.as_webhook(db).await?;
|
||||
|
||||
(webhook.token == token)
|
||||
(webhook.token.as_deref() == Some(&token))
|
||||
.then_some(())
|
||||
.ok_or(Error::InvalidCredentials)?;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user