Not saving OG metadata correctly

I noticed my published page was not showing up correctly in LinkedIn previews. When I checked the post inspector it showed why. Bootstrap Studio was saving the meta tags like this:
<meta property=“og:title” content=“Your Offensive Security Experts”>
<meta property=“og:image” content=“assets/img/ECR_OG.png”>

LinkedIn wants to see the tags like this:
<meta name=“title” property=“og:title” content=“Your Offensive Security Experts”>
<meta name=“image” property=“og:image” content=“assets/img/ECR_OG.png”>

Thank you for the report! According to their docs, the format we’re using is correct. Can you send a link to where your suggested version is mentioned?

LInkedIn Post Inspector

The Post Inspector reports that our format of meta tags

<meta property="og:title" content="...">

is correct. I don’t see any recommendations for writing meta tags like

<meta name="title" property="og:title" content="...">

I’m not sure why you are seeing something different. This is what I see :
"Image

Note: We used the value from the provided Open Graph tag on the page.

How to change the image

Provide a metadata tag for the og:image in the page’s head section. For example:

<meta name=“image” property=“og:image” content=“[Image URL here]”>

Alternate values we considered

Other values from the page that our scraper could have used for the content’s image: "

What is the website that you are using to test this, just to be a second set of eyes to see how your page is doing it?

I first discovered the issue on my website, www.ecrsecurity.com however the linked in post inspector I linked to above shows what it views as the correct format for og tags for any website you input into it.