Skip to content
Snippets Groups Projects
Commit af89ae2c authored by Marek Förster's avatar Marek Förster :wheelchair:
Browse files

og:url fix - added ending slash

parent 331a01e7
No related branches found
No related tags found
No related merge requests found
...@@ -62,7 +62,7 @@ export default { ...@@ -62,7 +62,7 @@ export default {
{ hid: 'description', property: 'description', content: this.post ? this.post.description : '' }, { hid: 'description', property: 'description', content: this.post ? this.post.description : '' },
{ hid: 'og:description', property: 'og:description', content: this.post ? this.post.description : '' }, { hid: 'og:description', property: 'og:description', content: this.post ? this.post.description : '' },
{ hid: 'og:title', property: 'og:title', content: title }, { hid: 'og:title', property: 'og:title', content: title },
{ hid: 'og:url', property: 'og:url', content: baseUrl + '/' + (this.post ? 'blog/'+this.post.slug : '') }, { hid: 'og:url', property: 'og:url', content: baseUrl + '/' + (this.post ? 'blog/'+this.post.slug+'/' : '') },
ogImage, ogImage,
], ],
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment