One of the possible reasons for the tab reloading issue is a potential bug in AC that causes undesired tab unloads. We need to make sure that doesn't happen. In Fenix, trim on memory pressure is disabled on Nightly: https://github.com/mozilla-mobile/fenix/blob/main/app/src/main/java/org/mozilla/fenix/components/Core.kt#L227 You can also look at all references to the LowMemoryAction to verify as well.
Bug 1752628 Comment 0 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
One of the possible reasons for the tab reloading issue is a potential bug in AC that causes undesired tab unloads. We need to make sure that doesn't happen. In Fenix, trim on memory pressure is disabled on Nightly: https://github.com/mozilla-mobile/fenix/blob/main/app/src/main/java/org/mozilla/fenix/components/Core.kt#L227 You can also look at all references to the LowMemoryAction to verify as well. Another place to look is to check the `SuspendEngineSessionAction`.
One of the possible reasons for the tab reloading issue is a potential bug in AC that causes undesired tab unloads. We need to make sure that doesn't happen. In Fenix, trim on memory pressure is disabled on Nightly: https://github.com/mozilla-mobile/fenix/blob/main/app/src/main/java/org/mozilla/fenix/components/Core.kt#L227 You can also look at all references to the LowMemoryAction to verify as well. Another place to look is to check the `SuspendEngineSessionAction` - how it's used for tab reloads or closes and when does that happen.