Skip to content

Commit ae04402

Browse files
committed
Fix update download complete notification not showing
1 parent 9c696d3 commit ae04402

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

app/src/main/java/eu/kanade/tachiyomi/data/updater/UpdaterNotifier.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import eu.kanade.tachiyomi.data.notification.NotificationHandler
1212
import eu.kanade.tachiyomi.data.notification.NotificationReceiver
1313
import eu.kanade.tachiyomi.data.notification.Notifications
1414
import eu.kanade.tachiyomi.util.system.getResourceColor
15+
import eu.kanade.tachiyomi.util.system.launchUI
1516
import eu.kanade.tachiyomi.util.system.notificationManager
1617

1718
/**
@@ -152,7 +153,9 @@ internal class UpdaterNotifier(private val context: Context) {
152153
)
153154
addReleasePageAction()
154155
}
155-
notificationBuilder.show()
156+
launchUI {
157+
notificationBuilder.show()
158+
}
156159
}
157160

158161
/**

0 commit comments

Comments
 (0)