I have same problem with you. I have no idea what to do, except modify that file.
change :
if ( is_array( $cached_list ) && !empty( $cached_list ) ) {
to :
if ( isset( $cached_list ) && is_array( $cached_list ) && !empty( $cached_list ) ) {
and
change :
if ( is_array( $expired_list ) && !empty( $expired_list ) ) {
to :
if ( isset( $expired_list ) && is_array( $expired_list ) && !empty( $expired_list ) ) {