diff options
| author | Fuwn <[email protected]> | 2023-04-17 07:07:44 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-04-17 07:07:44 +0000 |
| commit | 0a9dd33e2002cd0e8581ead8d23a87a95bec1dc8 (patch) | |
| tree | eb1cb997631ce69dc0d063c3448090d06b981a47 /src/gemini_to_html.rs | |
| parent | ci(docker): bump rustc (diff) | |
| download | september-0a9dd33e2002cd0e8581ead8d23a87a95bec1dc8.tar.xz september-0a9dd33e2002cd0e8581ead8d23a87a95bec1dc8.zip | |
deps(germ): bump from 0.3.7 to 0.3.9
Diffstat (limited to 'src/gemini_to_html.rs')
| -rw-r--r-- | src/gemini_to_html.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gemini_to_html.rs b/src/gemini_to_html.rs index 593f9dd..d7bc9b6 100644 --- a/src/gemini_to_html.rs +++ b/src/gemini_to_html.rs @@ -43,7 +43,7 @@ pub fn gemini_to_html( is_proxy: bool, ) -> (String, String) { let ast_tree = - germ::ast::Ast::from_string(&String::from_utf8_lossy(&response.data)); + germ::ast::Ast::from_string(String::from_utf8_lossy(&response.data)); let ast = ast_tree.inner(); let mut html = String::new(); let mut title = String::new(); |