Skip to content

Commit

Permalink
Issue #202 fix: notification 눌러서 들어갔을 때, 복원하던 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
Max committed Dec 13, 2022
1 parent 5957d97 commit 4a67cbd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
super.onCreate(savedInstanceState)

binding = DataBindingUtil.setContentView(this@MainActivity, R.layout.activity_main)
isLoginBefore = intent.extras?.getBoolean("isLoginBefore") ?: false
isLoginBefore = intent.extras?.getBoolean("isLoginBefore", true) ?: true

setCollectLoadingState()
setActionBar()
Expand Down

0 comments on commit 4a67cbd

Please sign in to comment.