Merge pull request #1842 from H3rnand3zzz/feature/plugins-download

New Feature: Plugins Download
This commit is contained in:
Michael Vetter
2023-06-06 18:35:18 +02:00
committed by GitHub
14 changed files with 327 additions and 112 deletions

View File

@@ -216,10 +216,9 @@ jid_fulljid_or_barejid(Jid* jid)
char*
jid_random_resource(void)
{
char* rand = get_random_string(4);
auto_char char* rand = get_random_string(4);
gchar* result = g_strdup_printf("profanity.%s", rand);
free(rand);
return result;
}