1
0
Fork 1
Spiegel von https://github.com/dani-garcia/vaultwarden.git synchronisiert 2024-06-30 19:24:42 +02:00

Remove unnecessary return

Dieser Commit ist enthalten in:
Jake Howard 2021-12-29 16:29:42 +00:00
Ursprung 690d0ed1bb
Commit 6ddbe84bde
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 57AFB45680EDD477

Datei anzeigen

@ -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 // HACK: HTTP expects the date to always be GMT (UTC) rather than giving an
// offset (which would always be 0 in UTC anyway) // offset (which would always be 0 in UTC anyway)
return expiry_time.to_rfc2822().replace("+0000", "GMT"); expiry_time.to_rfc2822().replace("+0000", "GMT")
} }
// //