Decode stored favorite before parsing it, fixes missing umlauts

This commit is contained in:
Nathan Gray 2014-05-27 18:52:44 +00:00
parent 2e293c8b91
commit 07ec496a8e

View File

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