mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2024-12-22 08:40:03 +02:00
Fix issue - Non clickable messages in threads
This commit is contained in:
parent
f49fdfa2b9
commit
9907717638
1 changed files with 3 additions and 2 deletions
|
@ -910,8 +910,9 @@ public class Helper {
|
||||||
ft = fragmentManager.beginTransaction();
|
ft = fragmentManager.beginTransaction();
|
||||||
ft.add(containerViewId, fragment, tag);
|
ft.add(containerViewId, fragment, tag);
|
||||||
if (backStackName != null) {
|
if (backStackName != null) {
|
||||||
ft = fragmentManager.beginTransaction();
|
try {
|
||||||
ft.addToBackStack(backStackName);
|
ft.addToBackStack(backStackName);
|
||||||
|
}catch (Exception ignored){}
|
||||||
}
|
}
|
||||||
if (!fragmentManager.isDestroyed()) {
|
if (!fragmentManager.isDestroyed()) {
|
||||||
ft.commit();
|
ft.commit();
|
||||||
|
|
Loading…
Reference in a new issue