mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-04-22 14:59:14 +00:00
Fix crash caused by incorrect cast to PreferencesFragment
This commit is contained in:
parent
ae0b00573f
commit
43ebe402ce
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ public class PreferencesActivity extends AegisActivity implements
|
||||||
showFragment(_fragment);
|
showFragment(_fragment);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
_fragment = (PreferencesFragment) getSupportFragmentManager().findFragmentById(R.id.content);
|
_fragment = getSupportFragmentManager().findFragmentById(R.id.content);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue