Open
Description
Email-link signin was not working in my app when the email link was clicked in the Outlook app. I traced it to this line in the official documentation, which doesn't seem to have a good reason to exist, AFAICT
https://github.com/firebase/FirebaseUI-Android/blame/master/auth/README.md#L297
For some reason, the gmail app does have extras in the intent but not the outlook app. In any case, that null check seems unnecessary: nothing in the sample code in the README derefences getIntent().getExtras()
and moreover, everything works fine even when extras is null. Is this just outdated documentation?