Fix req.hostname checking

pull/282/head
Amio 2019-06-03 19:25:22 +08:00
rodzic df3a6be9d8
commit b4eea98f21
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -48,7 +48,7 @@ export function badgenServe (handlers: BadgenServeHandlers): Function {
// return serveApi(req, res, { params })
// }
if (req.hostname.startsWith('flat.') && query.style !== undefined) {
if (req.headers.host.startsWith('flat.') && query.style !== undefined) {
query.style = 'flat'
}