I have an application that we recently moved to the 2.0 SDK. We've recently noticed that clicking on Growl notifications doesn't reliable invoke the growlNotificationWasClicked: message when Growl.app is running. We receive the following NSLog messages (note that is *does* work sometimes):2012-10-17 12:23:01.821 Growl[93265:303] Error generating context string from supposed plist: {
url = "http://winning.local";
}
2012-10-17 12:23:05.702 Growl[93265:303] Error generating context string from supposed plist: (null)
2012-10-17 12:23:11.440 Growl[93265:303] Error generating context string from supposed plist: (null)
2012-10-17 12:23:27.235 Growl[93265:303] Error generating context string from supposed plist: (null)
2012-10-17 12:23:59.578 Growl[93265:303] Error generating context string from supposed plist: (null)
2012-10-17 12:29:01.041 Growl[93265:303] Error generating context string from supposed plist: {
url = "http://winning.local";
}
When we enable Notification Center forwarding, our delegate method is always called when the NC message is clicked.I've created a simple test app that reproduces the problem:It's not immediately clear if this is an issue with the SDK or with Growl.app. Has this been observed by other developers?