Skip to content

Commit

Permalink
Fix update download complete notification not showing
Browse files Browse the repository at this point in the history
  • Loading branch information
Jays2Kings committed May 11, 2021
1 parent 9c696d3 commit ae04402
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import eu.kanade.tachiyomi.data.notification.NotificationHandler
import eu.kanade.tachiyomi.data.notification.NotificationReceiver
import eu.kanade.tachiyomi.data.notification.Notifications
import eu.kanade.tachiyomi.util.system.getResourceColor
import eu.kanade.tachiyomi.util.system.launchUI
import eu.kanade.tachiyomi.util.system.notificationManager

/**
Expand Down Expand Up @@ -152,7 +153,9 @@ internal class UpdaterNotifier(private val context: Context) {
)
addReleasePageAction()
}
notificationBuilder.show()
launchUI {
notificationBuilder.show()
}
}

/**
Expand Down

0 comments on commit ae04402

Please sign in to comment.