diff options
| author | Ben Harris <bjh21@bjh21.me.uk> | 2022-12-31 16:04:29 +0000 |
|---|---|---|
| committer | Ben Harris <bjh21@bjh21.me.uk> | 2023-01-19 20:34:48 +0000 |
| commit | b6f783e26e9d692dc2243bf5cf945cc0717c00aa (patch) | |
| tree | 206b24f1e196a81e7329f2a3b601cbfa19ea501f /kaios | |
| parent | aac72f2cd8e10c7faef3060fcf14201f958a6fe8 (diff) | |
| download | puzzles-b6f783e26e9d692dc2243bf5cf945cc0717c00aa.zip puzzles-b6f783e26e9d692dc2243bf5cf945cc0717c00aa.tar.gz puzzles-b6f783e26e9d692dc2243bf5cf945cc0717c00aa.tar.bz2 puzzles-b6f783e26e9d692dc2243bf5cf945cc0717c00aa.tar.xz | |
Correct type of "locales" in KaiOS manifest
It should be an object, not an array.
Diffstat (limited to 'kaios')
| -rwxr-xr-x | kaios/manifest.pl | 4 |
1 files 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, |