FIX: Exclude www in topic map links.
https://meta.discourse.org/t/topic-popular-links-panel-domain-extraction-doesnt-handle-country-tlds/60156/38?u=tgxworld
This commit is contained in:
parent
0bf928ad84
commit
cf05ad54a9
@ -160,7 +160,8 @@ createWidget('topic-map-expanded', {
|
||||
const domain = l.domain;
|
||||
if (domain && domain.length) {
|
||||
const s = domain.split('.');
|
||||
host = h('span.domain', s[s.length-2] + "." + s[s.length-1]);
|
||||
if (s[0] === 'www') s.shift();
|
||||
host = h('span.domain', s.join('.'));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user