From 644f00d5a2a7e69091d979a0bc964f07fd2b1a51 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Wed, 09 May 2012 07:48:10 -0400 Subject: [PATCH] Fix add_contact() (#1488465) --- program/js/app.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/program/js/app.js b/program/js/app.js index 3518712..615f94c 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -767,7 +767,7 @@ case 'always-load': if (this.env.uid && this.env.sender) { - this.add_contact(urlencode(this.env.sender)); + this.add_contact(this.env.sender); setTimeout(function(){ ref.command('load-images'); }, 300); break; } -- Gitblit v1.9.1