Beastwick18/nyaa

Double `get` request in Nyaa RSS

Closed this issue · 1 comments

You make twice request in Nyaa RSS.
First you you normal get method and later you create client and request again.

let content = reqwest::get(url.clone()).await?.bytes().await?;

let response = client.get(url.to_owned()).send().await?;

Good catch, fixed with 457dbac