From 62ee84348ba9c442c11330073f6bd15a42291617 Mon Sep 17 00:00:00 2001 From: anmol Date: Wed, 14 Oct 2020 08:09:13 +0530 Subject: [PATCH] sting type for database in manifest --- manifest.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index cdf0a3af..4684cdd6 100644 --- a/manifest.json +++ b/manifest.json @@ -47,13 +47,13 @@ }, { "name": "database", - "type": "int", + "type": "string", "ask": { "en": "Choose the database to be used for the Hubzilla [mysql:1,postgresql:2]", "fr": "Choisissez la database de l'Hubzilla [mysql:1,postgresql:2]" }, - "choices": [1, 2], - "default": 1 + "choices": ["1", "2"], + "default": "1" } ] } }