The next major release is currently planned for mid-February. It's going to be a very big release with a lot of new features and improvements.
If a critical issue comes up before that time, we'd put out a patch release which would roll this fix and any other minor fixes into it.
To fix the issue in this thread, just so anyone has it, is to 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));If there's a different issue you're having that you need an update for, just let us know.
Thanks,
Alex