diff --git a/components/status/StatusActions.vue b/components/status/StatusActions.vue
index ca8bc2f2..00d35af2 100644
--- a/components/status/StatusActions.vue
+++ b/components/status/StatusActions.vue
@@ -60,7 +60,7 @@ const togglePin = async () => toggleStatusAction(
 )
 
 const copyLink = async () => {
-  await clipboard.copy(location.href)
+  await clipboard.copy(`${location.origin}${getStatusPath(status)}`)
 }
 const openInOriginal = () => {
   window.open(status.url!, '_blank')