feat:riverpod 迁移 HomeMdContentDialogUI

This commit is contained in:
2024-03-10 12:54:34 +08:00
parent c9bd9ed677
commit 7b195271af
6 changed files with 117 additions and 26 deletions

View File

@ -94,7 +94,7 @@ fn _reade_resp_header(r_header: &HeaderMap) -> HashMap<String, String> {
for ele in r_header {
resp_headers.insert(
ele.0.as_str().to_string(),
ele.1.to_str().unwrap().to_string(),
ele.1.to_str().unwrap_or("").to_string(),
);
}
resp_headers