How to fix it on blogger
1. Go To Blogger Dashboard > Template2. Please Backup your template in your computer drive.
3. Click Edit HTML and Search for the following code
<b:if cond='data:blog.metaDescription != ""'>
<meta expr:content='data:blog.metaDescription' name='description'/>
</b:if>
4. Replace above with the below code. If you can’t found above code, then you may simply copy the below code and paste it just after opening <head> tag.
<b:if cond='data:blog.url != data:blog.homepageUrl'>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.metaDescription != ""'>
<meta expr:content='data:blog.metaDescription' name='description'/>
</b:if>
</b:if>
</b:if>
5. Save your template and you are done! Now visit your homepage or any post page to check its source file.
I hope this improvement will help robots to better crawl and index your content. Please let me know below in the comment form if you needed any help.