I'm trying to post to Facebook using the FBConnect sdk.
When I supply the link for the picture, everything works fine.

But when the picture is missing, none of the other info's are shown.
Am I doing something wrong or this is a bug in FBConnect.
The code is:
NSMutableDictionary *params = [NSMutableDictionary dictionary];
[params setValue:name forKey:@"name"];
[params setValue:address forKey:@"caption"];
[params setValue:descrption forKey:@"description"];
[params setValue:website forKey:@"link"];
if(thumbnail.serverPath)
[params setValue:thumbnail.serverPath forKey:@"picture"];
[facebook dialog:@"feed" andParams:params andDelegate:self];