fix(channels): sync monoforum suggested forwards and reactions
This commit is contained in:
parent
45a7e117ea
commit
fd47dd765a
17 changed files with 650 additions and 23 deletions
|
|
@ -177,6 +177,8 @@ func messageReactionErr(err error) error {
|
|||
|
||||
func channelReactionErr(err error) error {
|
||||
switch {
|
||||
case errors.Is(err, domain.ErrMessageIDInvalid):
|
||||
return messageIDInvalidErr()
|
||||
case errors.Is(err, domain.ErrReactionInvalid):
|
||||
return reactionInvalidErr()
|
||||
case errors.Is(err, domain.ErrReactionsTooMany):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue