mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 01:35:10 +01:00
Fix recycled icon in source migration list when source isn't installed
This commit is contained in:
parent
ed87dd89a1
commit
9b4ffd1cd5
@ -43,7 +43,7 @@ class SourceHolder(view: View, override val adapter: SourceAdapter) :
|
||||
// Set source name
|
||||
title.text = source.name
|
||||
|
||||
// Set circle letter image.
|
||||
// Set source icon
|
||||
itemView.post {
|
||||
val icon = source.icon()
|
||||
when {
|
||||
|
@ -39,12 +39,9 @@ class SourceHolder(view: View, override val adapter: SourceAdapter) :
|
||||
// Set source name
|
||||
title.text = source.name
|
||||
|
||||
// Set circle letter image.
|
||||
// Set source icon
|
||||
itemView.post {
|
||||
val icon = source.icon()
|
||||
if (icon != null) {
|
||||
image.setImageDrawable(icon)
|
||||
}
|
||||
image.setImageDrawable(source.icon())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user