HTTP 400 · Bad Request
BOOST_NOT_MODIFIED
You are already boosting the specified channel.
HTTP 400
Boost / Levels
When & why it happens
The request would not change the current boost — server rejects no-op edits.
Handling in gogram
Surfaced as *gogram.ErrResponseCode. Match on the message:
if err, ok := err.(*gogram.ErrResponseCode); ok {
if err.Message == "BOOST_NOT_MODIFIED" {
// handle this error
}
}