Fix navigation bug caused by entities in URIs

This commit is contained in:
Tissevert 2019-02-26 14:53:35 +01:00
parent 413a409447
commit d35a4c33ef
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ function Navigation(modules) {
}
function navigate(url) {
var path = url.split("/").slice(1);
var path = decodeURI(url).split("/").slice(1);
if(blog.tags[path[0]] != undefined) {
show(getArticlesList(path[0], path[1] == "all.html"));
} else if(path[0] == blog.path.articlesPath) {