The default config of the plugin includes avatars via http instead of https. If your site is under https, this throws warnings.
The easy fix: In the get_avatar method, add this line:
$image_url = str_replace('https://', 'https://', $image_url);
just before the return statement.
]]>