diff --git a/src/api.rs b/src/api.rs index 52ef855..1df18f2 100644 --- a/src/api.rs +++ b/src/api.rs @@ -249,17 +249,17 @@ async fn status(req: HttpRequest) -> Result { ], nsfw: true, }); - // status.add_channel(Channel { - // id: "erothots".to_string(), - // name: "Erothots".to_string(), - // description: "Free Onlyfans Content".to_string(), - // premium: false, - // favicon: "https://www.google.com/s2/favicons?sz=64&domain=erothots.co".to_string(), - // status: "active".to_string(), - // categories: vec![], - // options: vec![], - // nsfw: true, - // }); + status.add_channel(Channel { + id: "erothots".to_string(), + name: "Erothots".to_string(), + description: "Free Onlyfans Content".to_string(), + premium: false, + favicon: "https://www.google.com/s2/favicons?sz=64&domain=erothots.co".to_string(), + status: "active".to_string(), + categories: vec![], + options: vec![], + nsfw: true, + }); status.add_channel(Channel { id: "spankbang".to_string(), name: "Work in Progress - SpankBang".to_string(), diff --git a/src/providers/erothots.rs b/src/providers/erothots.rs index d634f5c..1ca34de 100644 --- a/src/providers/erothots.rs +++ b/src/providers/erothots.rs @@ -34,7 +34,7 @@ impl ErothotsProvider { } async fn get(&self, cache:VideoCache, page: u8) -> Result> { - let mut prefix_uri = "videos/hot".to_string(); + let mut prefix_uri = "videos/new".to_string(); let mut url = format!("{}{}?p={}", self.url, prefix_uri, page-1); if page == 1 { url = format!("{}{}", self.url, prefix_uri);