commit 809d0a35581fe5a27e45d9911e61d1ed6179e09c
parent 0f12987e190f46235c00e0bbed6df41fa29b3de2
Author: n0tr1v <n0tr1v@protonmail.com>
Date: Fri, 7 Apr 2023 17:09:06 -0700
useless clone
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main.rs b/src/main.rs
@@ -1250,7 +1250,7 @@ fn post_msg(client: &Client, post_type_recv: PostType, full_url: &str, session:
params.extend(vec![
("action", "post".to_owned()),
("postid", postid_value.to_owned()),
- ("message", msg.clone()),
+ ("message", msg),
("sendto", send_to.unwrap_or(SEND_TO_ALL.to_owned())),
]);
}