Remove another unneeded decodeURI() to avoid problems with addressbook advanced search

This commit is contained in:
Nathan Gray 2015-07-28 14:49:47 +00:00
parent 0543573974
commit 1ee1a934f8

View File

@ -386,7 +386,7 @@ var AppJS = Class.extend(
if (matches && matches.length > 1 && matches[2] !== undefined)
{
event.stopImmediatePropagation();
self.setState.call(self, JSON.parse(decodeURI(matches[2])));
self.setState.call(self, JSON.parse(matches[2]));
return false;
}
})