[MIRROR ONLY] A correct and efficient ATProto blob proxy for secure content delivery. codeberg.org/Blooym/porxie
36
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: inverse https only logic

Lyna 6a44c407 65dce873

+2 -2
+1 -1
src/blob_service.rs
··· 125 125 .build(), 126 126 http_client: reqwest::Client::builder() 127 127 .user_agent(PORXIE_USER_AGENT) 128 - .https_only(cfg!(debug_assertions)) 128 + .https_only(!cfg!(debug_assertions)) 129 129 .redirect(reqwest::redirect::Policy::limited(3)) 130 130 .gzip(true) 131 131 .brotli(true)
+1 -1
src/identity_service.rs
··· 45 45 resolver: JacquardResolver::new( 46 46 reqwest::Client::builder() 47 47 .user_agent(PORXIE_USER_AGENT) 48 - .https_only(cfg!(debug_assertions)) 48 + .https_only(!cfg!(debug_assertions)) 49 49 .redirect(reqwest::redirect::Policy::limited(2)) 50 50 .gzip(true) 51 51 .brotli(true)