Skip to content

Commit

Permalink
GrindrPlus: Disable persistent incognito
Browse files Browse the repository at this point in the history
  • Loading branch information
R0rt1z2 committed Dec 23, 2024
1 parent d55b51d commit a24eaff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ class SettingsFragment : Fragment() {

val hooks = Config.getHooksSettings()
hooks.forEach { (hookName, pair) ->
if (hookName != "Mod settings") {
if (hookName != "Mod settings" && hookName != "Persistent incognito") {
val hookView = createHookSwitch(context, hookName, pair.second, pair.first)
container?.addView(hookView)
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/grindrplus/utils/HookManager.kt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class HookManager {
private fun registerAndInitHooks() {
runBlocking(Dispatchers.IO) {
val hookList = listOf(
PersistentIncognito(),
// PersistentIncognito(),
AntiBlock(),
FeatureGranting(),
DisableUpdates(),
Expand Down

0 comments on commit a24eaff

Please sign in to comment.