[fenix] Closes https://github.com/mozilla-mobile/fenix/issues/3701 - When deleted use bookmark title if url is null in snackbar (https://github.com/mozilla-mobile/fenix/pull/3716)

pull/600/head
Emily Kager 5 years ago committed by Colin Lee
parent 5e37fb3d14
commit e0e403f287

@ -307,7 +307,7 @@ class BookmarkFragment : Fragment(), BackHandler, AccountObserver {
view!!,
getString(
R.string.bookmark_deletion_snackbar_message,
bookmarkNode.url?.urlToTrimmedHost(context!!)
bookmarkNode.url?.urlToTrimmedHost(context!!) ?: bookmarkNode.title
),
getString(R.string.bookmark_undo_deletion),
onCancel = {

Loading…
Cancel
Save