cmd.c
changeset 38 f195352808fb
parent 37 ed1b8250a170
equal deleted inserted replaced
37:ed1b8250a170 38:f195352808fb
    90 	}
    90 	}
    91 
    91 
    92 	if (!room) {
    92 	if (!room) {
    93 		if (subject) {
    93 		if (subject) {
    94 			gchar *hbody = g_strdup_printf ("[%s]\n%s", subject, body);
    94 			gchar *hbody = g_strdup_printf ("[%s]\n%s", subject, body);
    95 			hk_message_out (to, NULL, 0, hbody, crypted, xep184);
    95 			hk_message_out (to, NULL, 0, hbody, crypted, 0, xep184);
    96 			g_free (hbody);
    96 			g_free (hbody);
    97 		} else
    97 		} else
    98 			hk_message_out (to, NULL, 0, body, crypted, xep184);
    98 			hk_message_out (to, NULL, 0, body, crypted, 0, xep184);
    99 	}
    99 	}
   100 
   100 
   101 	return TRUE;
   101 	return TRUE;
   102 }
   102 }
   103 
   103