diff --git a/src/api.rs b/src/api.rs index 00d9878..95a8ccd 100644 --- a/src/api.rs +++ b/src/api.rs @@ -173,7 +173,6 @@ async fn status(req: HttpRequest) -> Result { nsfw: true, cacheDuration: Some(1800), }); - if clientversion >= ClientVersion::new(22, 97, "22a".to_string()) { // perverzija status.add_channel(Channel { id: "perverzija".to_string(), @@ -243,7 +242,6 @@ async fn status(req: HttpRequest) -> Result { nsfw: true, cacheDuration: None, }); - } // pornzog status.add_channel(Channel { diff --git a/src/providers/mod.rs b/src/providers/mod.rs index 30d36f1..fd855ce 100644 --- a/src/providers/mod.rs +++ b/src/providers/mod.rs @@ -59,7 +59,6 @@ pub static ALL_PROVIDERS: Lazy> = Lazy::new(| m.insert("pimpbunny", Arc::new(pimpbunny::PimpbunnyProvider::new()) as DynProvider); m.insert("javtiful", Arc::new(javtiful::JavtifulProvider::new()) as DynProvider); m.insert("hypnotube", Arc::new(hypnotube::HypnotubeProvider::new()) as DynProvider); - m.insert("perverzija", Arc::new(perverzija::PerverzijaProvider::new()) as DynProvider); // add more here as you migrate them m });