From 4a4e55c131fd05f9d28fe713ae40c4ed3a507154 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Fri, 6 Apr 2018 17:23:41 -0400 Subject: [PATCH] Deal with text/x-markdown in the text client by displaying it as plain text. --- textclient/citadel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/textclient/citadel.c b/textclient/citadel.c index d01f6fef5..b8c534337 100644 --- a/textclient/citadel.c +++ b/textclient/citadel.c @@ -1073,7 +1073,7 @@ void get_serv_info(CtdlIPC *ipc, char *supplied_hostname) * isn't really all that great, it's probably better to just go with * the plain text when we have it available. */ - if ((CtdlIPCSpecifyPreferredFormats(ipc, buf, "text/plain|text/html") / 100 ) != 2) { + if ((CtdlIPCSpecifyPreferredFormats(ipc, buf, "text/plain|text/html|text/x-markdown") / 100 ) != 2) { scr_printf("ERROR: Extremely old server; MSG4 framework not supported.\n"); logoff(ipc, 0); } -- 2.30.2