Fix a error if sent alert with nil body-text

This commit is contained in:
Kirill A. Korinskiy 2010-01-10 14:13:14 +03:00
parent 14a583c7b9
commit a59150dd19

View File

@ -63,7 +63,7 @@
(defun jabber-libnotify-message (text &optional title) (defun jabber-libnotify-message (text &optional title)
"Show MSG using libnotify" "Show MSG using libnotify"
(let (let
((body (jabber-escape-xml text)) ((body (or (jabber-escape-xml text) " "))
(head (jabber-escape-xml (head (jabber-escape-xml
(or title (or title
(or jabber-libnotify-message-header " ") (or jabber-libnotify-message-header " ")