You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
iOS: Patched the way stopInBackground option (see constructor() docs) treats "inactive" app state (in which the app is not focused, but may continue to work as normal, unlike in the background). Before this change entering the inactive state was considered as entering the background, thus the server was stopped (if stopInBackground was opted-in), and it was only re-started when the app entered the active state. Now the inactive state is considered as the foreground, i.e. the server is stopped when entering any other state beside active and inactive, and it is re-started when entering either active or inactive state (transitions back-and-forth between active and inactive states have no effect on the server state).