Details
-
Type:
Bug
-
Status: Reported
-
Priority:
Not Evaluated
-
Resolution: Unresolved
-
Affects Version/s: 1.15.0
-
Fix Version/s: None
-
Component/s: API: JavaScript, General
-
Labels:None
Description
Suppose we use the example given in manual:
Qt.core.pluginMetaData: ["uri=thePlugin"]
The JSON that it produces would be:
“uri” : [“thePlugin”]
It should be this instead, without brackets:
“uri” : “thePlugin”
It appears that no matter what the value is, it is always put into array.