I think I know why:
On line 88 of thumbs-rating.php, the variable $post_ID is converted into an integer, so I believe the line, if( $post_ID == '' ) $post_ID = get_the_ID(); should now be if( ! $post_ID ) $post_ID = get_the_ID(); I’ve tested it and it works for me. Hope this helps. 😁