Added SicFlics.

This commit is contained in:
DebaucheryLibrarian
2026-02-09 01:17:15 +01:00
parent 4154246ff2
commit 4bd6e39a8c
4 changed files with 196 additions and 1 deletions

View File

@@ -123,7 +123,7 @@ function urlToHostname(url) {
try {
const hostname = new URL(url)
.hostname
.match(/(www\.)?(.*)/)?.at(-1);
.match(/(www\.|m\.)?(.*)/)?.at(-1);
return hostname;
} catch (error) {