aboutsummaryrefslogtreecommitdiffstats
path: root/irc_im.c
diff options
context:
space:
mode:
Diffstat (limited to 'irc_im.c')
-rw-r--r--irc_im.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc_im.c b/irc_im.c
index 1d1ad2bb..e40a8a89 100644
--- a/irc_im.c
+++ b/irc_im.c
@@ -1013,7 +1013,7 @@ static char *set_eval_room_account(set_t *set, char *value)
if (!(acc = account_get(ic->irc->b, value))) {
return SET_INVALID;
- } else if (!acc->prpl->chat_join) {
+ } else if (!acc->prpl->chat_join && acc->prpl != &protocol_missing) {
irc_rootmsg(ic->irc, "Named chatrooms not supported on that account.");
return SET_INVALID;
}