Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: Grails-Feeds 1.2
-
Fix Version/s: Grails-Feeds 1.3
-
Labels:None
Description
This fails with the weird error:
articles.each { article ->
entry(article.title) {
println "in entry"
link = ApplicationBootStrap.serverURL + g.application.something()
publishedDate = article.publishDate
return "Hello"
}
}
the "g.application.something()" is a ref to a fictitious taglib and method, but weirdly causes the feed builder to attempt to add another entry befre the current one is complete. Not sure if this is the builder or groovy
I believe this is solved as a result of the other fix relating to nested closure nodes causing parent node to be incorrect