I encountered another problem with the description meta tag.
It shows shortcodes if it is at the beginning of the post.
<meta property="og:description" content=" [aesop_chapter title="Der Vorverkauf hat begonnen" bgtype="color" full="off" video_autoplay="on" bgcolor="#888888" revealfx="off" overlay_"/>
kind regards
I fixed it for me by removing the caching in Meta.php
if (isset($this->metaData[$type . '_desc']) && !empty($this->metaData[$type . '_desc'])) {
$desc = str_replace("\r\n", ' ', strip_tags(strip_shortcodes($this->metaData[$type . '_desc'])));
} else { //...