Merge branch 'get-thumbnail-mxc-as-ref' into 'next'

Do not copy mxc string unnecessarily in db.get_thumbnail()

See merge request famedly/conduit!272
merge-requests/274/head
Jonas Platte 2 years ago
commit 296c68c0cd

@ -207,7 +207,7 @@ pub async fn get_content_thumbnail_route(
}) = db
.media
.get_thumbnail(
mxc.clone(),
&mxc,
&db.globals,
body.width
.try_into()

@ -171,7 +171,7 @@ impl Media {
/// For width,height <= 96 the server uses another thumbnailing algorithm which crops the image afterwards.
pub async fn get_thumbnail(
&self,
mxc: String,
mxc: &str,
globals: &Globals,
width: u32,
height: u32,

Loading…
Cancel
Save