Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package purple-rocketchat for openSUSE:Factory checked in at 2021-01-22 21:52:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/purple-rocketchat (Old) and /work/SRC/openSUSE:Factory/.purple-rocketchat.new.28504 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "purple-rocketchat" Fri Jan 22 21:52:11 2021 rev:8 rq:865520 version:0.0+git20210119 Changes: -------- --- /work/SRC/openSUSE:Factory/purple-rocketchat/purple-rocketchat.changes 2021-01-14 15:06:28.718882458 +0100 +++ /work/SRC/openSUSE:Factory/.purple-rocketchat.new.28504/purple-rocketchat.changes 2021-01-22 21:52:37.269874366 +0100 @@ -1,0 +2,7 @@ +Thu Jan 21 14:09:59 UTC 2021 - Christian Goll <[email protected]> + +- Update to version 0.0+git20210219 (changes since 0.0+git20201219 + * Fix an occasional crash when empty messages are sent by the server + (boo#1180806) again + +------------------------------------------------------------------- Old: ---- purple-rocketchat-0.0+git20201219.tar.xz New: ---- purple-rocketchat-0.0+git20210119.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ purple-rocketchat.spec ++++++ --- /var/tmp/diff_new_pack.ALCvOm/_old 2021-01-22 21:52:37.901875262 +0100 +++ /var/tmp/diff_new_pack.ALCvOm/_new 2021-01-22 21:52:37.905875268 +0100 @@ -18,7 +18,7 @@ %define _name rocketchat Name: purple-rocketchat -Version: 0.0+git20201219 +Version: 0.0+git20210119 Release: 0 Summary: RocketChat protocol plugin for libpurple License: GPL-2.0-or-later ++++++ _service ++++++ --- /var/tmp/diff_new_pack.ALCvOm/_old 2021-01-22 21:52:37.941875319 +0100 +++ /var/tmp/diff_new_pack.ALCvOm/_new 2021-01-22 21:52:37.945875325 +0100 @@ -4,7 +4,7 @@ <param name="url">https://github.com/EionRobb/purple-rocketchat</param> <param name="filename">purple-rocketchat</param> <param name="versionformat">0.0+git%cd</param> - <param name="revision">5840e7d781debd82372a61e72d4abc8f1ecec90b</param> + <param name="revision">62090bc61f80fd0c4ea18319b6394990d9b0278a</param> </service> <service mode="disabled" name="recompress"> <param name="file">*.tar</param> ++++++ purple-rocketchat-0.0+git20201219.tar.xz -> purple-rocketchat-0.0+git20210119.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/purple-rocketchat-0.0+git20201219/librocketchat.c new/purple-rocketchat-0.0+git20210119/librocketchat.c --- old/purple-rocketchat-0.0+git20201219/librocketchat.c 2020-12-19 01:47:54.000000000 +0100 +++ new/purple-rocketchat-0.0+git20210119/librocketchat.c 2021-01-19 09:37:18.000000000 +0100 @@ -345,6 +345,10 @@ static gboolean markdown_version_checked = FALSE; static gboolean markdown_version_safe = FALSE; + if (markdown == NULL) { + return NULL; + } + if (!markdown_version_checked) { gchar **markdown_version_split = g_strsplit_set( markdown_version, ". ", -1); gchar *last_part; @@ -1366,7 +1370,7 @@ chatconv = purple_conversations_find_chat_with_account(rid, ya->account); } - if (chatconv != NULL) { + if (chatconv != NULL && msg_text != NULL) { gchar *html_topic = rc_markdown_to_html(msg_text); purple_chat_conversation_set_topic(chatconv, NULL, html_topic); g_free(html_topic);
