mirror of
https://github.com/knadh/listmonk.git
synced 2025-01-01 11:45:01 +08:00
Fix missing API response data{} envelope
This commit is contained in:
parent
525a5100f5
commit
39aa56454e
1 changed files with 2 additions and 2 deletions
|
@ -76,7 +76,7 @@ func handleGetSubscriber(c echo.Context) error {
|
|||
return err
|
||||
}
|
||||
|
||||
return c.JSON(http.StatusOK, sub)
|
||||
return c.JSON(http.StatusOK, okResp{sub})
|
||||
}
|
||||
|
||||
// handleQuerySubscribers handles querying subscribers based on an arbitrary SQL expression.
|
||||
|
@ -214,7 +214,7 @@ func handleUpdateSubscriber(c echo.Context) error {
|
|||
}
|
||||
_ = sendOptinConfirmation(sub, []int64(req.Lists), app)
|
||||
|
||||
return c.JSON(http.StatusOK, sub)
|
||||
return c.JSON(http.StatusOK, okResp{sub})
|
||||
}
|
||||
|
||||
// handleGetSubscriberSendOptin sends an optin confirmation e-mail to a subscriber.
|
||||
|
|
Loading…
Reference in a new issue