Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-25 05:40:29 +01:00
Remove unnecessary return
Dieser Commit ist enthalten in:
Ursprung
690d0ed1bb
Commit
6ddbe84bde
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
|
@ -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")
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Laden …
In neuem Issue referenzieren