Skip to content

Commit

Permalink
dashboard: fix dead navigation links (fixes #5046)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavi38 committed Jan 16, 2025
1 parent dcc1b1d commit 2b3b6ce
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,9 @@ class DashboardActivity : DashboardElementActivity(), OnHomeItemClickListener, N
val b = Bundle()
b.putBoolean("isMyCourseLib", true)
f.arguments = b
openCallFragment(f, "shelf")
val fragmentName = f::class.java.simpleName
val tag = "My$fragmentName"
openCallFragment(f, tag)
}

override fun onDestroy() {
Expand Down

0 comments on commit 2b3b6ce

Please sign in to comment.