Fix mobile tab

This commit is contained in:
jafea7 2025-04-18 17:59:52 +10:00
parent a8783d0112
commit f75a743a47
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ public class StripchatTabProvider extends AbstractTabProvider {
List<String> enabledTabs = getEnabledTabs(); List<String> enabledTabs = getEnabledTabs();
for (String tab : enabledTabs) { for (String tab : enabledTabs) {
String title = tabMap.getOrDefault(tab, tab); String title = tabMap.getOrDefault(tab, tab);
if (tab.contains("auto")) { if (tab.contains("auto") || (tab.contains("mobile"))) {
tabs.add(createTab(title, MessageFormat.format(urlFilterTemplate, tab))); tabs.add(createTab(title, MessageFormat.format(urlFilterTemplate, tab)));
} else { } else {
tabs.add(createTab(title, MessageFormat.format(urlTemplate, tab))); tabs.add(createTab(title, MessageFormat.format(urlTemplate, tab)));