From 16f0222a176fad979098ebafcf03e4813e41d5c2 Mon Sep 17 00:00:00 2001 From: sevichecc <91365763+Sevichecc@users.noreply.github.com> Date: Sat, 19 Nov 2022 17:58:03 +0800 Subject: [PATCH] replace acount of remove follow --- src/lib/components/extra/follow.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/extra/follow.svelte b/src/lib/components/extra/follow.svelte index 8ddc29bd..3a886f89 100644 --- a/src/lib/components/extra/follow.svelte +++ b/src/lib/components/extra/follow.svelte @@ -24,7 +24,7 @@ .then( ({ links }) => links.find((link: { rel: string }) => link.rel === 'http://ostatus.org/schema/1.0/subscribe').template ) - .then(template => (window.location.href = template.replace('{uri}', `sevichecc@kongwoo.icu`))) + .then(template => (window.location.href = template.replace('{uri}', `blog@seviche.cc`))) .catch(error => console.error(error)) $: if (input) input.length < 5 ? (status = '') : input.includes('@') && input.includes('.') ? (status = 'success') : (status = 'warning')