Remove unnecessary return

This commit is contained in:
Jake Howard 2021-12-29 16:29:42 +00:00
parent 690d0ed1bb
commit 6ddbe84bde
No known key found for this signature in database
GPG Key ID: 57AFB45680EDD477

View File

@ -444,7 +444,7 @@ pub fn format_datetime_http(dt: &DateTime<Local>) -> String {
// HACK: HTTP expects the date to always be GMT (UTC) rather than giving an
// offset (which would always be 0 in UTC anyway)
return expiry_time.to_rfc2822().replace("+0000", "GMT");
expiry_time.to_rfc2822().replace("+0000", "GMT")
}
//