fix(server): should not enable experimental mobile version in selfhost (#8840)

This commit is contained in:
liuyi
2024-11-15 17:47:34 +08:00
committed by GitHub
parent 1f71e87460
commit 84cfcb193f

View File

@@ -147,9 +147,11 @@ export class SelfhostModule implements OnModuleInit {
// fallback all unknown routes
app.get([basePath, basePath + '/*'], this.check.use, (req, res) => {
const mobile = isMobile({
ua: req.headers['user-agent'] ?? undefined,
});
const mobile =
this.config.AFFINE_ENV === 'dev' &&
isMobile({
ua: req.headers['user-agent'] ?? undefined,
});
return res.sendFile(
join(