1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-16 22:50:10 +03:00

F #4089: Fix export marketplace app action (#4694)

This commit is contained in:
Sergio Betanzos 2020-05-11 17:15:37 +02:00 committed by GitHub
parent 55e93f663a
commit c6b182a795
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,7 +75,7 @@ module OpenNebulaJSON
dsid = params['dsid'] ? params['dsid'].to_i : params['dsid']
name = params['name']
vmtemplate_name = params['vmtemplate_name']
tag ="tag=#{params['tag']}" if !params['tag'].empty?
tag ="tag=#{params['tag']}" if params['tag'] && !params['tag'].empty?
rc = super({
:dsid => dsid,
:name => name,