From 3cad5cab62100ec3b147fea600156db2660e7779 Mon Sep 17 00:00:00 2001 From: Tobias Huste <t.huste@hzdr.de> Date: Tue, 1 Dec 2020 13:34:24 +0100 Subject: [PATCH] Fix language selector issue for files starting with de When there is a file starting with de, the configuration defaulted the lang value to de. This way, the multilingual implementation breaks. This is fixed by properly specifying the path with a slash in the end. --- _config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index b3140c5a5..506932b3e 100644 --- a/_config.yml +++ b/_config.yml @@ -49,7 +49,7 @@ defaults: lang: "en" - scope: - path: "de" + path: "de/" values: lang: "de" hidden: true -- GitLab