Fix available:
" 1. Open your breadcrumb_navxt_class.php file, and find this code:
//Figure out the anchor for home page
$breadcrumb->set_anchor($this->opt['home_anchor'], get_option('home'));
then replace with this following code:
//Figure out the anchor for home page
$breadcrumb->set_anchor($this->opt['home_anchor'], get_bloginfo('url'));
2. Still in the same file, find again this code:
//Deal with the anchor
$breadcrumb->set_anchor($this->opt['home_anchor'], get_option('home'));
then replace with this following code:
//Deal with the anchor
$breadcrumb->set_anchor($this->opt['home_anchor'], get_bloginfo('url'));
Maybe this could be put into the plugin itself?