(error: any)
| 114 | msg: Api.Message, |
| 115 | options: Parameters<Api.Message["edit"]>[0] |
| 116 | ): Promise<void> { |
| 117 | try { |
| 118 | await msg.edit(options); |
| 119 | } catch (error) { |
| 120 | if (!isMessageNotModified(error)) throw error; |
| 121 | } |
no outgoing calls
no test coverage detected