fix: Scrolldown button
This commit is contained in:
parent
c23ef77770
commit
5a5895aea4
1 changed files with 3 additions and 3 deletions
|
|
@ -272,7 +272,7 @@ class ChatController extends State<ChatPageWithRoom> {
|
||||||
super.initState();
|
super.initState();
|
||||||
sendingClient = Matrix.of(context).client;
|
sendingClient = Matrix.of(context).client;
|
||||||
readMarkerEventId = room.fullyRead;
|
readMarkerEventId = room.fullyRead;
|
||||||
loadTimelineFuture = _getTimeline();
|
loadTimelineFuture = _getTimeline(eventContextId: readMarkerEventId);
|
||||||
}
|
}
|
||||||
|
|
||||||
void updateView() {
|
void updateView() {
|
||||||
|
|
@ -288,8 +288,8 @@ class ChatController extends State<ChatPageWithRoom> {
|
||||||
}) async {
|
}) async {
|
||||||
await Matrix.of(context).client.roomsLoading;
|
await Matrix.of(context).client.roomsLoading;
|
||||||
await Matrix.of(context).client.accountDataLoading;
|
await Matrix.of(context).client.accountDataLoading;
|
||||||
eventContextId ??= room.fullyRead;
|
if (eventContextId != null &&
|
||||||
if (!eventContextId.isValidMatrixId || eventContextId.sigil != '\$') {
|
(!eventContextId.isValidMatrixId || eventContextId.sigil != '\$')) {
|
||||||
eventContextId = null;
|
eventContextId = null;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue