Преглед изворни кода

fixed bug when images are not correctly specified by wordpress

yattoz пре 2 година
родитељ
комит
acb57a9b35
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      app/src/main/java/fr/forum_thalie/tsumugi/ui/news/NewsAdapter.kt

+ 1 - 1
app/src/main/java/fr/forum_thalie/tsumugi/ui/news/NewsAdapter.kt Прегледај датотеку

@@ -32,7 +32,7 @@ import java.util.*
32 32
 // but without Picasso (just fetching image by myself.)
33 33
 class ImageGetterAsyncTask(
34 34
     private val context: Context,
35
-    private val source: String,
35
+    private val source: String?,
36 36
     private val levelListDrawable: LevelListDrawable
37 37
 ) :
38 38
     AsyncTask<TextView?, Void?, Bitmap?>() {