Alex,
We did a lot more investigation and found out there is a bug in our Requests code. If you can make the following update, it should get things going for you. Please edit the /components/com_jfbconnect/models/notification.php . Around line 90, you should see:
->where($this->_db->qn('fb_request_id') . "=" . implode("' OR fb_request_id = '", $this->_fbRequestIds));Update that to the below:
->where($this->_db->qn('fb_request_id') . "='" . implode("' OR fb_request_id = '", $this->_fbRequestIds)) . "'";It can be difficult to see the differences there. Specifically:
* There's a ' after the first = sign
* There's a . "'" at the end before the ;
I hope that helps, but definitely keep us posted on how it goes.
Thanks,
Alex