From e40d4e65fac34a21ec3f7a71e2915e7d4ae469dc Mon Sep 17 00:00:00 2001 From: alistair3149 Date: Tue, 17 Jan 2023 14:12:47 -0500 Subject: [PATCH] =?UTF-8?q?fix(pwa):=20=F0=9F=90=9B=20syntax=20error=20in?= =?UTF-8?q?=20manifest=20API?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- includes/Api/ApiWebappManifest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Api/ApiWebappManifest.php b/includes/Api/ApiWebappManifest.php index add41b9e..d79cc79f 100644 --- a/includes/Api/ApiWebappManifest.php +++ b/includes/Api/ApiWebappManifest.php @@ -84,7 +84,7 @@ class ApiWebappManifest extends ApiBase { foreach ( $logoKeys as $logoKey ) { // Avoid undefined index - if ( !isset( $logos[$logoKey] ) { + if ( !isset( $logos[$logoKey] ) ) { continue; }