Re: cordova-lib: ConfigParser

2014-05-14 Thread Andrew Grieve
Looks like a bug to me. Seems it would throw an exception for a tag that doesn't exist. Probably no need for a JIRA, but would be good to add a test for the offending case. On Wed, May 14, 2014 at 6:14 AM, Axel Nennker wrote: > Hi, > > I think here is an error > > https://github.com/apache/cord

cordova-lib: ConfigParser

2014-05-14 Thread Axel Nennker
Hi, I think here is an error https://github.com/apache/cordova-lib/blob/master/cordova-lib/src/cordova/ConfigParser.js#L47 function findOrCreate(doc, name) { var ret = doc.find(name); if (!ret) { ret = new et.Element(name); doc.getroot().append(content); } return r