mirror of
				https://gitlab.com/famedly/fluffychat.git
				synced 2025-11-03 22:07:23 +01:00 
			
		
		
		
	fix: Scrolldown button
This commit is contained in:
		
							parent
							
								
									32d8791fe9
								
							
						
					
					
						commit
						88585fb192
					
				@ -272,7 +272,7 @@ class ChatController extends State<ChatPageWithRoom> {
 | 
			
		||||
    super.initState();
 | 
			
		||||
    sendingClient = Matrix.of(context).client;
 | 
			
		||||
    readMarkerEventId = room.fullyRead;
 | 
			
		||||
    loadTimelineFuture = _getTimeline();
 | 
			
		||||
    loadTimelineFuture = _getTimeline(eventContextId: readMarkerEventId);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  void updateView() {
 | 
			
		||||
@ -288,8 +288,8 @@ class ChatController extends State<ChatPageWithRoom> {
 | 
			
		||||
  }) async {
 | 
			
		||||
    await Matrix.of(context).client.roomsLoading;
 | 
			
		||||
    await Matrix.of(context).client.accountDataLoading;
 | 
			
		||||
    eventContextId ??= room.fullyRead;
 | 
			
		||||
    if (!eventContextId.isValidMatrixId || eventContextId.sigil != '\$') {
 | 
			
		||||
    if (eventContextId != null &&
 | 
			
		||||
        (!eventContextId.isValidMatrixId || eventContextId.sigil != '\$')) {
 | 
			
		||||
      eventContextId = null;
 | 
			
		||||
    }
 | 
			
		||||
    try {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user