From 21270aa266a0f5626b3800588a3fbaddae2a4ae5 Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 18 May 2026 18:59:14 +0000 Subject: [PATCH] thaiporntv: move into own "Thai" channel group Co-Authored-By: Claude Sonnet 4.6 --- src/providers/mod.rs | 16 +++++++++------- src/providers/thaiporntv.rs | 2 +- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/providers/mod.rs b/src/providers/mod.rs index 061aa9e..377b088 100644 --- a/src/providers/mod.rs +++ b/src/providers/mod.rs @@ -685,6 +685,7 @@ fn channel_group_title(group_id: &str) -> &'static str { "onlyfans" => "OnlyFans", "chinese" => "Chinese", "jav" => "JAV", + "thai" => "Thai", "fetish-kink" => "Fetish & Kink", "hentai-animation" => "Hentai & Animation", "ai" => "AI", @@ -697,7 +698,7 @@ fn channel_group_title(group_id: &str) -> &'static str { fn channel_group_system_image(group_id: &str) -> Option<&'static str> { match group_id { - "jav" | "chinese" => Some("globe"), + "jav" | "chinese" | "thai" => Some("globe"), _ => None, } } @@ -711,12 +712,13 @@ fn channel_group_order(group_id: &str) -> usize { "onlyfans" => 4, "chinese" => 5, "jav" => 6, - "fetish-kink" => 7, - "hentai-animation" => 8, - "ai" => 9, - "gay-male" => 10, - "live-cams" => 11, - "pmv-compilation" => 12, + "thai" => 7, + "fetish-kink" => 8, + "hentai-animation" => 9, + "ai" => 10, + "gay-male" => 11, + "live-cams" => 12, + "pmv-compilation" => 13, _ => 99, } } diff --git a/src/providers/thaiporntv.rs b/src/providers/thaiporntv.rs index 029d6dc..af8c9dc 100644 --- a/src/providers/thaiporntv.rs +++ b/src/providers/thaiporntv.rs @@ -23,7 +23,7 @@ use wreq::Version; pub const CHANNEL_METADATA: crate::providers::ProviderChannelMetadata = crate::providers::ProviderChannelMetadata { - group_id: "mainstream-tube", + group_id: "thai", tags: &["thai", "asian", "amateur"], };