]> Untitled Git - lemmy.git/commitdiff
Fix post titles being cut off (fixes #2718) (#2720)
authorNutomic <me@nutomic.com>
Fri, 10 Feb 2023 18:35:23 +0000 (03:35 +0900)
committerGitHub <noreply@github.com>
Fri, 10 Feb 2023 18:35:23 +0000 (13:35 -0500)
I didnt notice that this limit would also apply to Lemmy and other
software which has the title field. So gonna change it to be
identical to db limit

crates/apub/src/objects/post.rs

index e7a1d475d5abc3b3fc38ed3d38da3acb808dc66b..e6874f99efc32e7985f9487438fa69ed332bdc3a 100644 (file)
@@ -47,7 +47,7 @@ use lemmy_utils::{
 use std::ops::Deref;
 use url::Url;
 
-const MAX_TITLE_LENGTH: usize = 100;
+const MAX_TITLE_LENGTH: usize = 200;
 
 #[derive(Clone, Debug)]
 pub struct ApubPost(pub(crate) Post);