mirror of
				https://codeberg.org/tom79/Fedilab.git
				synced 2025-10-20 11:20:16 +03:00 
			
		
		
		
	Merge branch 'fix_511' into develop
This commit is contained in:
		
						commit
						eb89b0a8b2
					
				
					 2 changed files with 4 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -907,6 +907,7 @@ public class Helper {
 | 
			
		|||
            fragment = _fragment;
 | 
			
		||||
        } else {
 | 
			
		||||
            if (args != null) fragment.setArguments(args);
 | 
			
		||||
            ft = fragmentManager.beginTransaction();
 | 
			
		||||
            ft.add(containerViewId, fragment, tag);
 | 
			
		||||
            if (backStackName != null) ft.addToBackStack(backStackName);
 | 
			
		||||
            if (!fragmentManager.isDestroyed()) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1144,7 +1144,7 @@ public class FragmentMastodonTimeline extends Fragment implements StatusAdapter.
 | 
			
		|||
                                                    }
 | 
			
		||||
                                                    initializeStatusesCommonView(otherStatuses);
 | 
			
		||||
                                                }));
 | 
			
		||||
                            } else {
 | 
			
		||||
                            } else if(accountTimeline != null){
 | 
			
		||||
                                tempToken[0] = MainActivity.currentToken;
 | 
			
		||||
                                tempInstance[0] = currentInstance;
 | 
			
		||||
                                accountId[0] = accountTimeline.id;
 | 
			
		||||
| 
						 | 
				
			
			@ -1155,12 +1155,12 @@ public class FragmentMastodonTimeline extends Fragment implements StatusAdapter.
 | 
			
		|||
                } else {
 | 
			
		||||
                    accountId[0] = accountIDInRemoteInstance;
 | 
			
		||||
                }
 | 
			
		||||
            } else {
 | 
			
		||||
            } else if(accountTimeline != null){
 | 
			
		||||
                tempToken[0] = MainActivity.currentToken;
 | 
			
		||||
                tempInstance[0] = currentInstance;
 | 
			
		||||
                accountId[0] = accountTimeline.id;
 | 
			
		||||
            }
 | 
			
		||||
            if (accountId[0] == null) {
 | 
			
		||||
            if (accountId[0] == null && accountTimeline != null) {
 | 
			
		||||
                accountId[0] = accountTimeline.id;
 | 
			
		||||
            }
 | 
			
		||||
            displayStatuses(direction, accountId[0], tempInstance[0], tempToken[0], fetchStatus);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue