[fenix] Closes https://github.com/mozilla-mobile/fenix/issues/1948 - Shows bookmark url if title is null

pull/600/head
Emily Kager 5 years ago committed by Emily Kager
parent d162e11f58
commit 16bb0b28e4

@ -171,7 +171,7 @@ class BookmarkAdapter(val emptyView: View, val actionEmitter: Observer<BookmarkA
orientation = BrowserMenu.Orientation.DOWN
)
}
bookmark_title.text = item.title
bookmark_title.text = item.title ?: item.url
updateUrl(item, mode, selected)
}

Loading…
Cancel
Save