Fix 'couples' typo

This commit is contained in:
Jafea7 2025-04-16 16:41:20 +10:00
parent 457c2f062c
commit 7e0f9a3088
1 changed files with 2 additions and 2 deletions

View File

@ -32,14 +32,14 @@ public class BongaCamsTabProvider extends AbstractTabProvider {
tabMap.put("new", "New");
tabMap.put("female", "Female");
tabMap.put("male", "Male");
tabMap.put("couple", "Couple");
tabMap.put("couples", "Couples");
tabMap.put("trans", "Trans");
List<String> enabledTabs = getEnabledTabs();
for (String tab : enabledTabs) {
switch (tab) {
case "female":
case "male":
case "couple":
case "couples":
case "trans":
url = site.getBaseUrl() + "/tools/listing_v3.php?livetab=" + tab + "&online_only=true&is_mobile=true&limit=72&offset=";
break;