From 4321e6d96b6b5d4ab441b571078f98e656d665db Mon Sep 17 00:00:00 2001 From: Aly Fluckey Date: Wed, 15 Nov 2023 13:40:34 -0500 Subject: [PATCH] fix(meta): update og:url to use mozilla.social instead of elk.zone --- app.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.vue b/app.vue index 3ce0a9516e..468758e29f 100644 --- a/app.vue +++ b/app.vue @@ -7,7 +7,7 @@ const route = useRoute() if (process.server && !route.path.startsWith('/settings')) { useHead({ meta: [ - { property: 'og:url', content: `https://elk.zone${route.path}` }, + { property: 'og:url', content: `https://mozilla.social${route.path}` }, ], }) }