DiscordTime / sticky-sessions-android

StickySessions is an app that helps teams to share and store their thoughts through digital-like retrospective sessions
9 stars 6 forks source link

Fix #154: Crash while fast clicking on session item #165

Closed CarlosRodrigo closed 5 years ago

CarlosRodrigo commented 5 years ago

The presenter was detaching the view on the onPause method that was being called on the onPause android lifecycle method therefore when the user presses another time the mView property was not present resulting in a NullPointerException. I changed the lifecycle events from onPause to onStop and onResume to onStart.