Changeset

13596:85e8cc6870ae

mod_admin_shell: Mark event as handled when requested input is submitted
author Matthew Wild <mwild1@gmail.com>
date Tue, 07 Jan 2025 19:23:23 +0000
parents 13595:6fafe51df188
children 13597:62aca6adcfd3
files plugins/mod_admin_shell.lua
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_admin_shell.lua	Tue Jan 07 18:47:24 2025 +0000
+++ b/plugins/mod_admin_shell.lua	Tue Jan 07 19:23:23 2025 +0000
@@ -211,6 +211,7 @@
 		return true;
 	end
 	input_promise.resolve(event.stanza:get_text());
+	return true;
 end);
 
 function console:new_session(admin_session)