Merge pull request #494 from LibreQoE/url_fix_no_bracket

Change download location for geo.bin
This commit is contained in:
Herbert "TheBracket 2024-06-14 13:35:40 -05:00 committed by GitHub
commit 33a08e95be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,7 +46,7 @@ impl GeoTable {
fn download() -> anyhow::Result<()> {
log::info!("Downloading ASN-IP Table");
let file_path = Self::file_path();
let url = "https://bfnightly.bracketproductions.com/geo.bin";
let url = "https://stats.libreqos.io/geo.bin";
let response = reqwest::blocking::get(url)?;
let content = response.bytes()?;
let bytes = &content[0..];