It's possible that the URL is not being encoded correctly. It looks as though you are using the JFBConnect Content plugin to add these sharing buttons. If so, could you try changing the following code?
In /libraries/sourcecoast/utilities.php around line 82 change
$extraButtonText .= '{JLinkedShare href=' . $url . " layout=" . $dataCount . $renderKeyString . '}';to
$extraButtonText .= '{JLinkedShare href=' . urlencode($url) . " layout=" . $dataCount . $renderKeyString . '}';
Let me know if this helps with the issue.
Thanks,
-Melissa