From f4586e17cae5c4ff17abb18327988b06a950135a Mon Sep 17 00:00:00 2001 From: Milad Nekofar Date: Sat, 7 Dec 2024 10:27:49 +0300 Subject: [PATCH] fix(handlers): correct typo in `farcaster_meta` HTML tag The typo in the HTML tag was causing improper rendering. Fixing the closing quote ensures valid HTML syntax. --- src/handlers.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers.rs b/src/handlers.rs index 9423386..903d594 100644 --- a/src/handlers.rs +++ b/src/handlers.rs @@ -104,7 +104,7 @@ impl OpenGraphMeta { let farcaster_meta = format!( r#" - + "#, image = self.image, );