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
1 changed files with 1 additions and 1 deletions

View File

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