diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 5405e8c4dce35474d4a473f0be87052dbf109ed6..1205a5b2035d289ba2bdf77bc582d1e5a6cca4bb 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -15,8 +15,14 @@ Fixed
 * Migration added in 2.7.2 did not work in all scenarios
 * [Dev] Field change tracking API for Person was broken in 2.7.2
 * [OAuth] Automatic clean-up of expired OAuth tokens could fail
+* Allow maskable icons for non-masked use
 * Add missing documentation
 
+Known issues
+~~~~~~~~~~~~
+
+* Maskable and non-masked icons *purpose) any cannot be separated
+
 `2.7.2`_ - 2022-01-31
 ---------------------
 
diff --git a/aleksis/core/views.py b/aleksis/core/views.py
index 539807bf19434b3ae812afe9fa8f317063be8654..c23498a8b611fb91872089aa3f09fb89cba0b4e9 100644
--- a/aleksis/core/views.py
+++ b/aleksis/core/views.py
@@ -175,7 +175,7 @@ class ManifestView(View):
             {
                 "src": favicon_img.faviconImage.url,
                 "sizes": f"{favicon_img.size}x{favicon_img.size}",
-                "purpose": "maskable" if prefs["theme__pwa_icon_maskable"] else "any",
+                "purpose": "maskable any" if prefs["theme__pwa_icon_maskable"] else "any",
             }
             for favicon_img in pwa_imgs
         ]