mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Fix readonly questions (display_text, etc): the code did not handle them anymore on the app side
This commit is contained in:
parent
023207f0b6
commit
c5e9cec933
1 changed files with 3 additions and 0 deletions
|
@ -1168,6 +1168,9 @@ def app_install(
|
|||
# If packaging_format v2+, save all install questions as settings
|
||||
if packaging_format >= 2:
|
||||
for question in questions:
|
||||
# Except readonly "questions" that don't even have a value
|
||||
if question.readonly:
|
||||
continue
|
||||
# Except user-provider passwords
|
||||
# ... which we need to reinject later in the env_dict
|
||||
if question.type == "password":
|
||||
|
|
Loading…
Add table
Reference in a new issue