1
0
mirror of https://github.com/profanity-im/profanity.git synced 2025-01-03 14:57:42 -05:00

Merge pull request #1702 from mdosch/fix-autocomplete-ox-discover

Fix autocomplete for `/ox discover`.
This commit is contained in:
Michael Vetter 2022-05-02 18:06:10 +02:00 committed by GitHub
commit 49c6b45812
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2596,7 +2596,7 @@ _ox_autocomplete(ProfWin* window, const char* const input, gboolean previous)
return found;
}
found = autocomplete_param_with_func(input, "/ox discover", roster_contact_autocomplete, previous, NULL);
found = autocomplete_param_with_func(input, "/ox discover", roster_barejid_autocomplete, previous, NULL);
if (found) {
return found;
}