Disabled didPopNext() refresh of message_list
This commit is contained in:
parent
5b8a1e86e0
commit
600f3365f6
@ -113,8 +113,10 @@ class _MessageListPageState extends State<MessageListPage> with RouteAware {
|
||||
|
||||
@override
|
||||
void didPopNext() {
|
||||
ApplicationLog.debug('[MessageList::RouteObserver] --> didPopNext (will background-refresh)');
|
||||
_backgroundRefresh(false);
|
||||
if (AppSettings().alwaysBackgroundRefreshMessageListOnPop) {
|
||||
ApplicationLog.debug('[MessageList::RouteObserver] --> didPopNext (will background-refresh)');
|
||||
_backgroundRefresh(false);
|
||||
}
|
||||
}
|
||||
|
||||
void _onLifecycleResume() {
|
||||
|
@ -4,6 +4,7 @@ class AppSettings extends ChangeNotifier {
|
||||
bool groupNotifications = true;
|
||||
int messagePageSize = 128;
|
||||
bool showDebugButton = true;
|
||||
bool alwaysBackgroundRefreshMessageListOnPop = false;
|
||||
|
||||
static AppSettings? _singleton = AppSettings._internal();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user