From b6f783e26e9d692dc2243bf5cf945cc0717c00aa Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sat, 31 Dec 2022 16:04:29 +0000 Subject: [PATCH] Correct type of "locales" in KaiOS manifest It should be an object, not an array. --- kaios/manifest.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kaios/manifest.pl b/kaios/manifest.pl index c11acd1..458c724 100755 --- a/kaios/manifest.pl +++ b/kaios/manifest.pl @@ -46,13 +46,13 @@ print encode_json({ url => "https://bjh21.me.uk", }, default_locale => "en-GB", - locales => [ + locales => { "en-GB" => { name => $displayname, subtitle => $description, description => $objective, }, - ], + }, categories => ["games"], type => "web", cursor => JSON::PP::false,