Custom nav menu current item custom link problem

I had to compare the $object_id with the current queried object id instead of the post id. https://www.robbertvermeulen.com/wp_get_nav_menu_items-current-menu-item/

$object_id  = get_post_meta( $id, '_menu_item_object_id', true );
$current    = ( $object_id == get_queried_object_id() ) ? 'current-menu-item' : '';