Skip to content

Commit 2b61c64

Browse files
committed
fix (parse-service) options in result must be string
1 parent 893ab18 commit 2b61c64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/server-code/runners/tasks/parse-service.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ function parseService(task) {
3333
// version : service.version,
3434
// description : service.description,
3535
config: service.configItems.map(item => Object.assign({
36-
//TODO: server bug workaround
37-
___jsonclass: 'com.backendless.marketplace.model.BlConfigurationItemDescription'
36+
___jsonclass: 'com.backendless.marketplace.model.BlConfigurationItemDescription',
37+
options: item.options && item.options.join(',')
3838
}, item)),
3939
xml : service.xml()
4040
};

0 commit comments

Comments
 (0)