I wanna check if the user has still a valid session, before I present the Home View controller of my app. I use the latest Firebase API. I think if I use the legacy, I\'ll be ab
if FIRAuth.auth().currentUser != nil { presentHome() } else { //User Not logged in }
For updated SDK
if Auth.auth().currentUser != nil { }