android: Tweaking random flags until ANRs subside.
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 30m34s
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 30m34s
This commit is contained in:
@@ -460,9 +460,11 @@ class TfElement extends LitElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
update_progress() {
|
update_progress() {
|
||||||
if (!this.loading_latest &&
|
if (
|
||||||
|
!this.loading_latest &&
|
||||||
!this.loading_latest_scheduled &&
|
!this.loading_latest_scheduled &&
|
||||||
!this.shadowRoot.getElementById('tf-tab-news')?.is_loading()) {
|
!this.shadowRoot.getElementById('tf-tab-news')?.is_loading()
|
||||||
|
) {
|
||||||
this.progress = undefined;
|
this.progress = undefined;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@@ -426,7 +426,7 @@ public class TildeFriendsActivity extends Activity {
|
|||||||
Log.w("tildefriends", "onServiceDisconnected");
|
Log.w("tildefriends", "onServiceDisconnected");
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
s_activity.bindService(intent, s_activity.service_connection, BIND_AUTO_CREATE);
|
s_activity.bindService(intent, s_activity.service_connection, BIND_AUTO_CREATE | BIND_NOT_FOREGROUND);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void stop_sandbox() {
|
public static void stop_sandbox() {
|
||||||
|
Reference in New Issue
Block a user