ameenmaali / urldedupe

Pass in a list of URLs with query strings, get back a unique list of URLs and query string combinations
MIT License
331 stars 53 forks source link

Avoid encoding #2

Closed larskraemer closed 4 years ago

larskraemer commented 4 years ago

To avoid having to decode and then re-encode all of the URLs, store their original name in Url The decoding is done in parse anyway, which is called from the constructor

larskraemer commented 4 years ago

After wrestling with git a bit, I managed to update this pull request... I also modified url_string to be const, since I assume it is never supposed to change.

ameenmaali commented 4 years ago

Awesome, thank you @larskraemer