1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-16 21:35:24 +00:00

Merge pull request #1736 from netboy3/fix/autoaway_logic

Fix /autoaway command logic
This commit is contained in:
Michael Vetter 2022-07-29 08:47:35 +02:00 committed by GitHub
commit 0e02cc3cf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6677,9 +6677,6 @@ cmd_autoaway(ProfWin* window, const char* const command, gchar** args)
cons_bad_cmd_usage(command);
return TRUE;
}
} else {
cons_bad_cmd_usage(command);
return TRUE;
}
if (g_strcmp0(args[0], "message") == 0) {
@ -6693,7 +6690,7 @@ cmd_autoaway(ProfWin* window, const char* const command, gchar** args)
}
return TRUE;
} else if (g_strcmp0(args[1], "xa") == 0) {
} else if (g_strcmp0(args[1], "xa") == 0 && args[2] != NULL) {
if (g_strcmp0(args[2], "off") == 0) {
prefs_set_string(PREF_AUTOXA_MESSAGE, NULL);
cons_show("Auto xa message cleared.");
@ -6714,6 +6711,7 @@ cmd_autoaway(ProfWin* window, const char* const command, gchar** args)
return TRUE;
}
cons_bad_cmd_usage(command);
return TRUE;
}