(error: any)
| 1139 | |
| 1140 | const isMessageNotModifiedError = (error: any): boolean => |
| 1141 | getEditErrorText(error).includes("MESSAGE_NOT_MODIFIED"); |
| 1142 | |
| 1143 | const shouldFallbackToReplyOnEditError = (error: any): boolean => { |
| 1144 | const text = getEditErrorText(error); |
| 1145 | return ( |
no test coverage detected