From 56b174bd58269f2d0a1c8061c21d9c86c8513dc3 Mon Sep 17 00:00:00 2001 From: Astro Date: Mon, 15 May 2023 01:18:38 +0200 Subject: [PATCH] relay: delint --- src/relay.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/relay.rs b/src/relay.rs index e6c1681..a9a3c53 100644 --- a/src/relay.rs +++ b/src/relay.rs @@ -152,10 +152,10 @@ pub fn spawn( let body = json!({ "@context": "https://www.w3.org/ns/activitystreams", "type": "Announce", - "actor": **&actor_id, + "actor": *actor_id, "to": ["https://www.w3.org/ns/activitystreams#Public"], "object": &post.uri, - "id": **&post_url, + "id": *post_url, }); let body = Arc::new( serde_json::to_vec(&body)