Fix typo in file_stream error message (#3459)

This commit is contained in:
Kenny Lau
2025-09-07 12:49:22 +02:00
committed by GitHub
parent 3fc8e4ae0a
commit 64ae48347e
+1 -1
View File
@@ -284,7 +284,7 @@ where
.unwrap_or_else(|e| {
(
StatusCode::INTERNAL_SERVER_ERROR,
format!("build FileStream responsec error: {e}"),
format!("build FileStream response error: {e}"),
)
.into_response()
})