2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2025-07-05 02:37:23 +02:00

fix: Chat UI doesnt load

This commit is contained in:
Christian Pauly 2021-04-16 14:37:01 +02:00
parent 3d4decb5b5
commit 4f20ea4d64

@ -238,7 +238,7 @@ class ChatUI extends StatelessWidget {
child: FutureBuilder<bool>( child: FutureBuilder<bool>(
future: controller.getTimeline(), future: controller.getTimeline(),
builder: (BuildContext context, snapshot) { builder: (BuildContext context, snapshot) {
if (!snapshot.hasData) { if (controller.timeline == null) {
return Center( return Center(
child: CircularProgressIndicator(), child: CircularProgressIndicator(),
); );