diff --git a/src/providers/sextb.rs b/src/providers/sextb.rs index 8fba5a6..4ba8d65 100644 --- a/src/providers/sextb.rs +++ b/src/providers/sextb.rs @@ -220,59 +220,6 @@ impl SextbProvider { ], multiSelect: false, }, - ChannelOption { - id: "filter".to_string(), - title: "Section".to_string(), - description: "Browse one of the main site sections.".to_string(), - systemImage: "square.grid.2x2".to_string(), - colorName: "green".to_string(), - options: vec![ - FilterOption { - id: "censored".to_string(), - title: "Censored".to_string(), - }, - FilterOption { - id: "uncensored".to_string(), - title: "Uncensored".to_string(), - }, - FilterOption { - id: "subtitle".to_string(), - title: "Subtitle".to_string(), - }, - FilterOption { - id: "amateur".to_string(), - title: "Amateur".to_string(), - }, - ], - multiSelect: false, - }, - ChannelOption { - id: "categories".to_string(), - title: "Genres".to_string(), - description: "Browse direct genre archive pages.".to_string(), - systemImage: "tag.fill".to_string(), - colorName: "orange".to_string(), - options: genres, - multiSelect: false, - }, - ChannelOption { - id: "sites".to_string(), - title: "Studios".to_string(), - description: "Browse direct studio archive pages.".to_string(), - systemImage: "building.2.fill".to_string(), - colorName: "purple".to_string(), - options: studios, - multiSelect: false, - }, - ChannelOption { - id: "stars".to_string(), - title: "Actresses".to_string(), - description: "Browse direct actress archive pages.".to_string(), - systemImage: "person.crop.square".to_string(), - colorName: "pink".to_string(), - options: actresses, - multiSelect: false, - }, ], nsfw: true, cacheDuration: Some(1800), diff --git a/src/providers/supjav.rs b/src/providers/supjav.rs index 0f6af5a..58f3004 100644 --- a/src/providers/supjav.rs +++ b/src/providers/supjav.rs @@ -181,14 +181,6 @@ impl SupjavProvider { } fn build_channel(&self, _clientversion: ClientVersion) -> Channel { - let tags = self.tags.read().map(|value| value.clone()).unwrap_or_default(); - let uploaders = self - .uploaders - .read() - .map(|value| value.clone()) - .unwrap_or_default(); - let stars = self.stars.read().map(|value| value.clone()).unwrap_or_default(); - Channel { id: CHANNEL_ID.to_string(), name: "SupJav".to_string(), @@ -231,43 +223,6 @@ impl SupjavProvider { ], multiSelect: false, }, - ChannelOption { - id: "filter".to_string(), - title: "Category".to_string(), - description: "Browse a SupJav category archive directly.".to_string(), - systemImage: "line.horizontal.3.decrease.circle".to_string(), - colorName: "green".to_string(), - options: self.categories.clone(), - multiSelect: false, - }, - ChannelOption { - id: "sites".to_string(), - title: "Makers".to_string(), - description: "Browse maker archives and reuse them as uploader targets." - .to_string(), - systemImage: "building.2".to_string(), - colorName: "purple".to_string(), - options: uploaders, - multiSelect: false, - }, - ChannelOption { - id: "stars".to_string(), - title: "Cast".to_string(), - description: "Browse cast archives directly.".to_string(), - systemImage: "person.2".to_string(), - colorName: "pink".to_string(), - options: stars, - multiSelect: false, - }, - ChannelOption { - id: "categories".to_string(), - title: "Genres".to_string(), - description: "Browse a genre/tag archive directly.".to_string(), - systemImage: "tag.fill".to_string(), - colorName: "orange".to_string(), - options: tags, - multiSelect: false, - }, ], nsfw: true, cacheDuration: Some(1800),