Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
akliuxingyuan committed Jan 8, 2025
1 parent 80902e8 commit 59fe900
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ class DefaultTabsTrayController(
private val showUndoSnackbarForInactiveTab: (Int) -> Unit,
private val showUndoSnackbarForSyncedTab: (CloseTabsUseCases.UndoableOperation) -> Unit,
internal val showCancelledDownloadWarning: (downloadCount: Int, tabId: String?, source: String?) -> Unit,
private val showBookmarkSnackbar: (tabSize: Int) -> Unit,
private val showBookmarkSnackbar: (tabSize: Int, parentFolderTitle: String?) -> Unit,
private val showCollectionSnackbar: (
tabSize: Int,
isNewCollection: Boolean,
Expand Down Expand Up @@ -442,7 +442,7 @@ class DefaultTabsTrayController(
)
}
withContext(Dispatchers.Main) {
showBookmarkSnackbar(tabs.size)
showBookmarkSnackbar(tabs.size, parentNode?.title)
}
}.getOrElse {
// silently fail
Expand Down

0 comments on commit 59fe900

Please sign in to comment.