Skip to content

Commit

Permalink
fix sonarqube
Browse files Browse the repository at this point in the history
Signed-off-by: Manu Muñoz <[email protected]>
  • Loading branch information
mmmateos authored and xavimolloy committed Dec 23, 2024
1 parent c123991 commit 222aa13
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,9 @@ abstract class SessionManagerActivity : AppCompatActivity(), ActivityResultObser
if (finishAll) intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
if (bundle != null) intent.putExtras(bundle)
if (transition != null) {
ContextCompat.startActivity(this, intent, transition.toBundle())
startActivity(intent, transition.toBundle())
} else {
ContextCompat.startActivity(this, intent, null)
startActivity(intent, null)
}
if (finishCurrent) finish()
}
Expand Down

0 comments on commit 222aa13

Please sign in to comment.