diff --git a/lib/ui/home/home_ui_model.dart b/lib/ui/home/home_ui_model.dart index 6e868a5..54c82d0 100644 --- a/lib/ui/home/home_ui_model.dart +++ b/lib/ui/home/home_ui_model.dart @@ -113,7 +113,11 @@ class HomeUIModel extends BaseUIModel { .data)); countdownFestivalListData = await Api.getFestivalCountdownList(); notifyListeners(); - handleError(() => _loadRRS()); + try { + _loadRRS(); + } catch (e) { + dPrint("_loadRRS Error:$e"); + } } catch (e) { dPrint(e); }