From 6e99e87aa68bf148cadc1733fa211b5427a4361a Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sat, 20 Jul 2024 12:06:30 +0200 Subject: [PATCH] [PWA] Allow any orientation. --- platypush/backend/http/app/routes/pwa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platypush/backend/http/app/routes/pwa.py b/platypush/backend/http/app/routes/pwa.py index acad05f86f..1db0b186d7 100644 --- a/platypush/backend/http/app/routes/pwa.py +++ b/platypush/backend/http/app/routes/pwa.py @@ -123,7 +123,7 @@ def manifest_json(): "gcm_user_visible_only": True, "start_url": start_url, "permissions": ["gcm"], - "orientation": "portrait", + "orientation": "any", "display": "standalone", "theme_color": "#000000", "background_color": "#ffffff",