Browse Source

Use application context to create toast (#7756)

Ivan Iskandar 2 years ago
parent
commit
b0520df1dd

+ 1 - 1
app/src/main/java/eu/kanade/tachiyomi/util/system/ContextExtensions.kt

@@ -69,7 +69,7 @@ fun Context.toast(@StringRes resource: Int, duration: Int = Toast.LENGTH_SHORT,
  * @param duration the duration of the toast. Defaults to short.
  */
 fun Context.toast(text: String?, duration: Int = Toast.LENGTH_SHORT, block: (Toast) -> Unit = {}): Toast {
-    return Toast.makeText(this, text.orEmpty(), duration).also {
+    return Toast.makeText(applicationContext, text.orEmpty(), duration).also {
         block(it)
         it.show()
     }