forked from extern/egroupware
Decode stored favorite before parsing it, fixes missing umlauts
This commit is contained in:
parent
2e293c8b91
commit
07ec496a8e
@ -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;
|
||||
}
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user