chore: Better applifecycle logs
This commit is contained in:
parent
cfc161b252
commit
a5a1c9b580
2 changed files with 2 additions and 1 deletions
|
|
@ -34,9 +34,9 @@ class VoipPlugin with WidgetsBindingObserver implements WebRTCDelegate {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void didChangeAppLifecycleState(AppLifecycleState? state) {
|
void didChangeAppLifecycleState(AppLifecycleState? state) {
|
||||||
Logs().v('AppLifecycleState = $state');
|
|
||||||
background = (state == AppLifecycleState.detached ||
|
background = (state == AppLifecycleState.detached ||
|
||||||
state == AppLifecycleState.paused);
|
state == AppLifecycleState.paused);
|
||||||
|
Logs().w('Set background mode in VOIP plugin', background);
|
||||||
}
|
}
|
||||||
|
|
||||||
void addCallingOverlay(String callId, CallSession call) {
|
void addCallingOverlay(String callId, CallSession call) {
|
||||||
|
|
|
||||||
|
|
@ -424,6 +424,7 @@ class MatrixState extends State<Matrix> with WidgetsBindingObserver {
|
||||||
if (PlatformInfos.isMobile) {
|
if (PlatformInfos.isMobile) {
|
||||||
client.backgroundSync = foreground;
|
client.backgroundSync = foreground;
|
||||||
client.requestHistoryOnLimitedTimeline = !foreground;
|
client.requestHistoryOnLimitedTimeline = !foreground;
|
||||||
|
Logs().v('Set background sync to', foreground);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue