Skip to content

Commit f5f6e0d

Browse files
committed
temp: Temporary commit for wyvest issue (todo: revert)
1 parent 050509b commit f5f6e0d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/core/src/utils/http.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,11 @@ pub async fn fetch_advanced(
106106

107107
match result {
108108
Ok(x) => {
109-
let x = x.error_for_status()?;
109+
let x = if !x.url().to_string().starts_with("https://resources") {
110+
tracing::info!(x)//.error_for_status()?;
111+
} else {
112+
x
113+
};
110114

111115
let bytes = if let Some((feed, total)) = &ingress {
112116
let length = x.content_length();

0 commit comments

Comments
 (0)