We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a10243 commit a023f8dCopy full SHA for a023f8d
1 file changed
app/src/main/java/net/rpcsx/ProgressRepository.kt
@@ -127,8 +127,11 @@ class ProgressRepository {
127
notificationManager.notify(requestId.toInt(), builder.build())
128
}
129
} else if (value < 0) {
130
- val contentText = text ?: "Installation failed"
+ val contentText = text ?: context.getString(R.string.unexpected_error)
131
builder.setContentText(contentText)
132
+ .setPriority(NotificationCompat.PRIORITY_HIGH)
133
+ .setProgress(0, 0, false)
134
+ .setOngoing(false)
135
AlertDialogQueue.showDialog(title, contentText)
136
137
} else {
0 commit comments