Fix request history
This commit is contained in:
parent
c3421f7d54
commit
795d19ee01
|
@ -81,9 +81,11 @@ class _ChatState extends State<_Chat> {
|
|||
final int _loadHistoryCount = 100;
|
||||
|
||||
void requestHistory() async {
|
||||
setState(() => this._loadingHistory = true);
|
||||
await timeline.requestHistory(historyCount: _loadHistoryCount);
|
||||
setState(() => this._loadingHistory = false);
|
||||
if (timeline.events.last.type != EventTypes.RoomCreate) {
|
||||
setState(() => this._loadingHistory = true);
|
||||
await timeline.requestHistory(historyCount: _loadHistoryCount);
|
||||
setState(() => this._loadingHistory = false);
|
||||
}
|
||||
}
|
||||
|
||||
@override
|
||||
|
|
Loading…
Reference in a new issue