Skip to content
This repository has been archived by the owner on Feb 11, 2024. It is now read-only.

Commit

Permalink
fix: handlers (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavier Basty authored Mar 31, 2023
1 parent 42cd4a2 commit 26cb18d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/save_message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub struct HistoryPayload {
pub async fn handler(
StateExtractor(state): StateExtractor<Arc<AppState>>,
// RequireValidSignature(Json(payload)): RequireValidSignature<Json<HistoryPayload>>,
Json(body): Json<HistoryPayload>,
Json(payload): Json<HistoryPayload>,
) -> error::Result<Response> {
debug!("Received `save_message` query: {:?}", payload);

Expand Down

0 comments on commit 26cb18d

Please sign in to comment.