fix(pwa): fix unclosed bracket (#603)

This commit is contained in:
StarHeart 2023-03-14 06:40:33 +08:00 committed by GitHub
parent 1a99a36f87
commit b5a65be32f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -84,7 +84,7 @@ class ApiWebappManifest extends ApiBase {
foreach ( $logoKeys as $logoKey ) {
// Avoid undefined index
if ( !isset( $logos[$logoKey] ) {
if ( !isset( $logos[$logoKey] ) ) {
continue;
}