diff --git a/index.html b/index.html index 371a03ad..2cfc81d8 100644 --- a/index.html +++ b/index.html @@ -216,7 +216,10 @@ var lpos = lang.indexOf(ms); var linfix = ''; if (lpos !== -1) { - linfix = "." + lang.substring(lpos + ms.length); + let lcode = lang.substring(lpos + ms.length); + if (lcode !== 'en-GB') { + linfix = "." + lcode + } } var s = document.createElement("script"); s.src = "article" + linfix+ ".js?ts=" + Date.now();