Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Commit

Permalink
Update Android Components version to 48.0.20200626130049. (#12006)
Browse files Browse the repository at this point in the history
Co-authored-by: MickeyMoz <[email protected]>
Co-authored-by: Gabriel Luong <[email protected]>
  • Loading branch information
gabrielluong and MickeyMoz authored Jun 26, 2020
1 parent 80de385 commit 005ad6f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class DefaultToolbarMenu(
onAddonsManagerTapped = {
onItemTapped.invoke(ToolbarMenu.Item.AddonsManager)
},
appendExtensionActionAtStart = !shouldReverseItems
appendExtensionSubMenuAtStart = !shouldReverseItems
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import mozilla.components.concept.tabstray.TabsTray
import mozilla.components.feature.media.ext.pauseIfPlaying
import mozilla.components.feature.media.ext.playIfPaused
import mozilla.components.support.base.observer.Observable
import mozilla.components.support.images.ImageRequest
import mozilla.components.support.images.loader.ImageLoader
import mozilla.components.support.ktx.kotlin.tryGetHostFromUrl
import org.mozilla.fenix.R
Expand Down Expand Up @@ -71,7 +72,7 @@ class TabTrayViewHolder(
if (tab.thumbnail != null) {
thumbnailView.setImageBitmap(tab.thumbnail)
} else {
imageLoader.loadIntoView(thumbnailView, tab.id)
imageLoader.loadIntoView(thumbnailView, ImageRequest(tab.id))
}

// Media state
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/java/AndroidComponents.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */

object AndroidComponents {
const val VERSION = "48.0.20200625130125"
const val VERSION = "48.0.20200626130049"
}

0 comments on commit 005ad6f

Please sign in to comment.