diff --git a/native/src/components/site.rs b/native/src/components/site.rs index 523ef365..ce591fef 100644 --- a/native/src/components/site.rs +++ b/native/src/components/site.rs @@ -44,6 +44,7 @@ impl Site { let url = config.manifest_url.clone(); let response = reqwest::blocking::get(url).context(DOWNLOAD_ERROR)?; let json = response.text().context(DOWNLOAD_ERROR)?; + let json = json.trim_start_matches('\u{feff}'); info!("Parsing the PWA manifest"); let mut manifest: SiteManifest = serde_json::from_str(&json).context(PARSE_ERROR)?;