mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
apps: fix another case of no attribute 'value' due to config panels/questions refactoring
This commit is contained in:
parent
53bc30b9fb
commit
4fda8ed49f
1 changed files with 1 additions and 1 deletions
|
@ -1098,7 +1098,7 @@ def app_install(
|
|||
args = {
|
||||
question.id: question.value
|
||||
for question in questions
|
||||
if question.value is not None
|
||||
if not question.readonly and question.value is not None
|
||||
}
|
||||
|
||||
# Validate domain / path availability for webapps
|
||||
|
|
Loading…
Add table
Reference in a new issue