Sorry for the issue. There's currently a SQL bug in the latest release. It will be fixed in the next release, due out in about two weeks. To work around it, for now, don't use the filtering options in the Usermap area. Once the error occurs, you'll need to logout of the admin area and log back in to clear your session data. Then, go directly to the Usermap area. Don't use the dropdown filter and don't use the social network icons on the main JFBConnect admin page (which preset the filters).
If you'd rather fix the code right now, please edit the /administrator/components/com_jfbconnect/models/usermap.php file. Around line 176, you'll see:
if ($filter_network != -1)
$query->where("um.provider LIKE '%" . $filter_network);Update that to:
if ($filter_network != -1)
$query->where("um.provider = " . $this->_db->q($filter_network));Sorry for the trouble. It's a silly bug, but not not large enough to warrant a full release right now since another is right on the horizon. There's no 'functional' issues that this problem will cause other than not being able to see the usermap area.
I hope that helps,
Alex