I also have this issue.
I think this is because the array was unset.
If fixed this by adding
“$this->formatted_favorites[$site][‘posts’][$favorite] = array();” before line 73:
foreach ( $site_favorites[‘posts’] as $key => $favorite ){
unset($this->formatted_favorites[$site][‘posts’][$key]);
$this->formatted_favorites[$site][‘posts’][$favorite] = array();
$this->formatted_favorites[$site][‘posts’][$favorite][‘post_id’] = $favorite;
}