In the case the RSS will be up and runing sometime in the future, replace lines 5-8 in /wp-content/plugins/bei-fen/pages/bf-info.php
include_once(ABSPATH . WPINC . '/feed.php');
$rss = fetch_feed('https://www.beifen.info/feed/');
$maxitems = $rss->get_item_quantity(5);
$rss_items = $rss->get_items(0, $maxitems);
WITH:
include_once(ABSPATH . WPINC . '/feed.php');
$rss = fetch_feed('https://www.beifen.info/feed/');
if (!is_wp_error( $rss )){ // Checks that the object is created correctly
$maxitems = $rss->get_item_quantity(5);
$rss_items = $rss->get_items(0, $maxitems);
} else {
$maxitems = 0;
$rss_items = array();
}