Skip to content

Commit

Permalink
No longer use HTTP URL's fragment as Selector's fragment. Following e…
Browse files Browse the repository at this point in the history
  • Loading branch information
JEnoch committed Dec 15, 2020
1 parent 7ef975e commit 973f47b
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/lib.rs
Expand Up @@ -75,10 +75,6 @@ async fn run(runtime: Runtime, args: &'static ArgMatches<'_>) {
s.push('?');
s.push_str(q);
}
if let Some(f) = url.fragment() {
s.push('#');
s.push_str(f);
}
let mut selector = match Selector::try_from(s) {
Ok(sel) => sel,
Err(e) => {
Expand Down

0 comments on commit 973f47b

Please sign in to comment.