mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-23 01:01:40 +03:00
fix(server): should not enable experimental mobile version in selfhost (#8840)
This commit is contained in:
parent
1f71e87460
commit
84cfcb193f
@ -147,7 +147,9 @@ export class SelfhostModule implements OnModuleInit {
|
|||||||
|
|
||||||
// fallback all unknown routes
|
// fallback all unknown routes
|
||||||
app.get([basePath, basePath + '/*'], this.check.use, (req, res) => {
|
app.get([basePath, basePath + '/*'], this.check.use, (req, res) => {
|
||||||
const mobile = isMobile({
|
const mobile =
|
||||||
|
this.config.AFFINE_ENV === 'dev' &&
|
||||||
|
isMobile({
|
||||||
ua: req.headers['user-agent'] ?? undefined,
|
ua: req.headers['user-agent'] ?? undefined,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user