fix PB
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
nyyu 2021-10-29 20:13:04 +02:00
parent 8f0af3e76b
commit 16947d2734

View file

@ -62,7 +62,7 @@ impl DataSource for PBDataSource {
let mut builds = vec![]; let mut builds = vec![];
let rep = client let rep = client
.get(format!("https://www.probuilds.net/ajax/games?limit=1&sort=gameDate-desc&championId={}&olderThan=0&lane=&region=", champ.key).as_str()) .get(format!("https://www.probuilds.net/ajax/gamesLive?limit=1&sort=gameDate-desc&championId={}&olderThan=0&lane=&region=", champ.key).as_str())
.set("Accept", "application/json") .set("Accept", "application/json")
.call(); .call();