2024-03-13 06:37:18 -07:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2024-02-12 17:43:06 -08:00
|
|
|
import type { onRequestHookHandler } from 'fastify';
|
|
|
|
|
|
|
|
export const handleRequestRedirectToOmitSearch: onRequestHookHandler = (request, reply, done) => {
|
|
|
|
const index = request.url.indexOf('?');
|
|
|
|
if (~index) {
|
|
|
|
reply.redirect(301, request.url.slice(0, index));
|
|
|
|
}
|
|
|
|
done();
|
|
|
|
};
|