| 11158 | const message = chat[this_edit_mes_id]; | 11158 | const message = chat[this_edit_mes_id]; |
| 11159 | const selectedSwipe = message['swipe_id'] ?? undefined; | 11159 | const selectedSwipe = message['swipe_id'] ?? undefined; |
| 11160 | const swipesArray = Array.isArray(message['swipes']) ? message['swipes'] : []; | 11160 | const swipesArray = Array.isArray(message['swipes']) ? message['swipes'] : []; |
| 11161 | const canDeleteSwipe = !fromSlashCommand && !message.is_user && swipesArray.length > 1 && this_edit_mes_id === chat.length - 1 && selectedSwipe !== undefined; | 11161 | const canDeleteSwipe = power_user.confirm_message_delete && !fromSlashCommand && !message.is_user && swipesArray.length > 1 && this_edit_mes_id === chat.length - 1 && selectedSwipe !== undefined; |
| 11162 | await deleteMessage(Number(this_edit_mes_id), canDeleteSwipe ? selectedSwipe : undefined, power_user.confirm_message_delete && fromSlashCommand !== true); | 11162 | await deleteMessage(Number(this_edit_mes_id), canDeleteSwipe ? selectedSwipe : undefined, power_user.confirm_message_delete && fromSlashCommand !== true); |
| 11163 | }); | 11163 | }); |
| 11164 | | 11164 | |