Featured images not showing up

Finally found the issue: I was using a filter in my site specific plugin to remove image attributes. Somehow it also deleted the full image URL.

add_filter( 'post_thumbnail_html', 'remove_img_attributes', 10 );

Removing that filter solved the issue.