Fixed some issues

This commit is contained in:
Juan Gilsanz Polo 2023-05-20 01:16:33 +02:00
parent ecd9b4fc89
commit 8d7beae328
4 changed files with 14 additions and 30 deletions

View file

@ -73,7 +73,7 @@ class _LogsListClientState extends State<LogsListClient> {
final result = await cancelableRequest?.value;
if (result != null) {
if (loadingMore != null && loadingMore == true) {
if (loadingMore != null && loadingMore == true && mounted) {
setState(() => isLoadingMore = false);
}