We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ff5c7e commit 67fa36cCopy full SHA for 67fa36c
app/src/main/java/me/teble/xposed/autodaily/hook/CoreServiceHook.kt
@@ -206,7 +206,6 @@ class CoreServiceHook : BaseHook() {
206
if (param.thisObject::class.java != cCoreService) {
207
return
208
}
209
- LogUtil.d("CoreService onStartCommand")
210
val args = param.args
211
val service = param.thisObject as Service
212
val intent = args[0] as Intent?
app/src/main/java/me/teble/xposed/autodaily/hook/notification/XANotification.kt
@@ -53,7 +53,7 @@ object XANotification {
53
54
setOngoing(onGoing)
55
}.build()
56
- notificationManager.notify(if (isTask) atomicId++ else NOTIFICATION_ID, mNotification)
+ notificationManager.notify(if (!isTask) atomicId++ else NOTIFICATION_ID, mNotification)
57
58
59
fun stop() {
0 commit comments