Bypass wp_safe_remote_get()?

This is the fix I found.

function turn_off_reject_unsafe_urls($args) {
    $args['reject_unsafe_urls'] = false;

    return $args;
}

add_filter( 'http_request_args', 'turn_off_reject_unsafe_urls');