diff options
author | boasting-squirrel <boasting.squirrel@gmail.com> | 2019-04-02 05:26:56 +0000 |
---|---|---|
committer | boasting-squirrel <boasting.squirrel@gmail.com> | 2019-04-02 05:26:56 +0000 |
commit | 5d743481eb595c0d3c60313058ddbcb444a2926e (patch) | |
tree | 398e96f4fe806ffb67454c40b7d9af38affa9ea4 /src | |
parent | Renamed ArchLinux to Archlinux (diff) | |
download | miniserve-5d743481eb595c0d3c60313058ddbcb444a2926e.tar.gz miniserve-5d743481eb595c0d3c60313058ddbcb444a2926e.zip |
Removed query params when clicking on a file
Diffstat (limited to 'src')
-rw-r--r-- | src/renderer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/renderer.rs b/src/renderer.rs index 56935d8..abb8730 100644 --- a/src/renderer.rs +++ b/src/renderer.rs @@ -199,7 +199,7 @@ fn entry_row( (entry.name) "/" } } @else if entry.is_file() { - a.file href=(parametrized_link(&entry.link, &sort_method, &sort_order, &color_scheme)) { + a.file href=(&entry.link) { (entry.name) } } @ else if entry.is_symlink() { |