From 95686eb64281be4a7a2ac3371636161b5cf3dad2 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Mon, 2 May 2022 10:23:24 +0200 Subject: [PATCH] ox: add jid autocompletion for /ox request --- src/command/cmd_ac.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/command/cmd_ac.c b/src/command/cmd_ac.c index 83721f02..f477aa6c 100644 --- a/src/command/cmd_ac.c +++ b/src/command/cmd_ac.c @@ -2605,6 +2605,11 @@ _ox_autocomplete(ProfWin* window, const char* const input, gboolean previous) if (found) { return found; } + + found = autocomplete_param_with_func(input, "/ox request", roster_barejid_autocomplete, previous, NULL); + if (found) { + return found; + } } found = autocomplete_param_with_ac(input, "/ox log", ox_log_ac, TRUE, previous);