summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIzhar Firdaus <izhar@inigo-tech.com>2011-04-15 17:00:09 +0800
committerIzhar Firdaus <izhar@inigo-tech.com>2011-04-15 17:00:09 +0800
commit7b54f61bea615308a2697385941e67523ab46144 (patch)
treeca4c91aab3ff9456366d711a1ce4aab67b3df647
parentd156187f7e670ae3d6301b099da940712231ffbe (diff)
downloadhack-patches-7b54f61bea615308a2697385941e67523ab46144.tar.gz
hack-patches-7b54f61bea615308a2697385941e67523ab46144.tar.xz
hack-patches-7b54f61bea615308a2697385941e67523ab46144.zip
missing space after the username when presence status changed
-rw-r--r--gnomeshell@pidgin.im/extension.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnomeshell@pidgin.im/extension.js b/gnomeshell@pidgin.im/extension.js
index f2e4bb1..0ce5838 100644
--- a/gnomeshell@pidgin.im/extension.js
+++ b/gnomeshell@pidgin.im/extension.js
@@ -204,7 +204,7 @@ Source.prototype = {
if (this._presence == old_status) return;
this._presence = new_status;
- this._notification.appendPresence('<i>' + this.title + 'is now ' + new_status + '</i>', false);
+ this._notification.appendPresence('<i>' + this.title + ' is now ' + new_status + '</i>', false);
},