Fix www replace.

This commit is contained in:
Mike Cao 2022-09-05 15:35:36 -07:00
parent 52bbc3692d
commit 13cf286874
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ export const urlFilter = data => {
try {
const { pathname, search } = new URL(url, location.origin);
if (search.startsWith('?/')) {
if (search.startsWith('?')) {
return `${pathname}${search}`;
}
@ -47,7 +47,7 @@ export const refFilter = data => {
try {
const url = new URL(x);
id = url.hostname.replace('www', '') || url.href;
id = url.hostname.replace(/www\./, '') || url.href;
} catch {
id = '';
}

View File

@ -1,5 +1,5 @@
import { ok } from 'next-basics';
export default async (req, res) => {
return ok(res, 'nice');
return ok(res);
};