Skip to content

Commit

Permalink
#5 Fix skelbiu-lt id not being properly trimed
Browse files Browse the repository at this point in the history
  • Loading branch information
zexa committed Oct 12, 2021
1 parent f3fd2b3 commit 75d46d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skelbiu-lt-scraper/src/skelbiu_lt_listing_scraper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ impl ListingScraper<SkelbiuLtListing> for SkelbiuLtListingScraper {
if let Some(id_pos) = id.find("ID: ") {
id = (&id[id_pos..]).replace("ID: ", "");
}
id.trim().to_string();
id = id.trim().to_string();
debug!(self.logger, "Found id for {}", &listing_url);

let views = html
Expand Down

0 comments on commit 75d46d0

Please sign in to comment.