Fix post titles being cut off (fixes #2718) (#2720)

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
better_community_search_sorting
Nutomic 1 year ago committed by GitHub
parent 3bfa8ab4ff
commit 3bb98fcc64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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);

Loading…
Cancel
Save