diff options
author | 2023-09-11 19:46:42 -0700 | |
---|---|---|
committer | 2023-09-11 20:24:42 -0700 | |
commit | a73d58aad5b9f06b43e42703048b9c4039a7e90f (patch) | |
tree | 346a9d6e76e17f03e3fccdfade1f97dc731ea5a7 | |
parent | 2104eb85d7b571c2db4f0df5ce980041b57fe211 (diff) | |
download | v2-a73d58aad5b9f06b43e42703048b9c4039a7e90f.tar.gz v2-a73d58aad5b9f06b43e42703048b9c4039a7e90f.tar.zst v2-a73d58aad5b9f06b43e42703048b9c4039a7e90f.zip |
Status bar is unreadable when using PWA in dark mode on Firefox Android
Fixes #2055
-rw-r--r-- | internal/ui/static_manifest.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/internal/ui/static_manifest.go b/internal/ui/static_manifest.go index a3ed0f81..ad41be05 100644 --- a/internal/ui/static_manifest.go +++ b/internal/ui/static_manifest.go @@ -40,7 +40,6 @@ func (h *handler) showWebManifest(w http.ResponseWriter, r *http.Request) { Icons []webManifestIcon `json:"icons"` ShareTarget webManifestShareTarget `json:"share_target"` Display string `json:"display"` - ThemeColor string `json:"theme_color"` BackgroundColor string `json:"background_color"` } @@ -60,7 +59,6 @@ func (h *handler) showWebManifest(w http.ResponseWriter, r *http.Request) { Description: "Minimalist Feed Reader", Display: displayMode, StartURL: route.Path(h.router, "login"), - ThemeColor: themeColor, BackgroundColor: themeColor, Icons: []webManifestIcon{ {Source: route.Path(h.router, "appIcon", "filename", "icon-120.png"), Sizes: "120x120", Type: "image/png", Purpose: "any"}, |