Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
QuasselDroid-ng
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Janne Mareike Koschinski
QuasselDroid-ng
Commits
84e03b12
Unverified
Commit
84e03b12
authored
4 months ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
fix: unresponsive notifications
parent
017f6022
Branches
attachments
No related tags found
No related merge requests found
Pipeline
#3027
passed
4 months ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/src/main/java/de/kuschku/quasseldroid/service/QuasseldroidNotificationManager.kt
+18
-6
18 additions, 6 deletions
...u/quasseldroid/service/QuasseldroidNotificationManager.kt
with
18 additions
and
6 deletions
app/src/main/java/de/kuschku/quasseldroid/service/QuasseldroidNotificationManager.kt
+
18
−
6
View file @
84e03b12
...
...
@@ -40,6 +40,7 @@ import androidx.core.app.Person
import
androidx.core.app.RemoteInput
import
androidx.core.graphics.drawable.IconCompat
import
de.kuschku.libquassel.protocol.Buffer_Type
import
de.kuschku.libquassel.protocol.MsgId
import
de.kuschku.libquassel.util.flag.hasFlag
import
de.kuschku.quasseldroid.R
import
de.kuschku.quasseldroid.settings.NotificationSettings
...
...
@@ -55,6 +56,14 @@ class QuasseldroidNotificationManager @Inject constructor(private val context: C
private
val
notificationManagerCompat
=
NotificationManagerCompat
.
from
(
context
)
private
var
translatedLocale
:
Context
=
LocaleHelper
.
setLocale
(
context
)
@JvmInline
private
value
class
RequestCode
(
val
messageId
:
MsgId
)
{
val
open
:
Int
get
()
=
messageId
.
id
.
toInt
()
*
8
+
1
val
reply
:
Int
get
()
=
messageId
.
id
.
toInt
()
*
8
+
2
val
markRead
:
Int
get
()
=
messageId
.
id
.
toInt
()
*
8
+
3
val
delete
:
Int
get
()
=
messageId
.
id
.
toInt
()
*
8
+
4
}
fun
updateTranslation
()
{
translatedLocale
=
LocaleHelper
.
setLocale
(
context
)
}
...
...
@@ -118,9 +127,12 @@ class QuasseldroidNotificationManager @Inject constructor(private val context: C
selfInfo
:
SelfInfo
,
notifications
:
List
<
NotificationMessage
>,
isLoud
:
Boolean
,
isConnected
:
Boolean
):
Handle
{
val
latestMessage
=
notifications
.
last
().
messageId
val
requestCode
=
RequestCode
(
latestMessage
)
val
pendingIntentOpen
=
PendingIntent
.
getActivity
(
context
.
applicationContext
,
System
.
currentTimeMillis
().
toInt
()
,
requestCode
.
open
,
ChatActivity
.
intent
(
context
.
applicationContext
,
bufferId
=
buffer
.
id
).
apply
{
flags
=
Intent
.
FLAG_ACTIVITY_CLEAR_TOP
},
...
...
@@ -134,7 +146,7 @@ class QuasseldroidNotificationManager @Inject constructor(private val context: C
val
replyPendingIntent
=
PendingIntent
.
getService
(
context
.
applicationContext
,
System
.
currentTimeMillis
().
toInt
()
,
requestCode
.
reply
,
QuasselService
.
intent
(
context
,
bufferId
=
buffer
.
id
...
...
@@ -145,11 +157,11 @@ class QuasseldroidNotificationManager @Inject constructor(private val context: C
val
markReadPendingIntent
=
PendingIntent
.
getService
(
context
.
applicationContext
,
System
.
currentTimeMillis
().
toInt
()
,
requestCode
.
markRead
,
QuasselService
.
intent
(
context
,
bufferId
=
buffer
.
id
,
markReadMessage
=
notifications
.
last
().
m
essage
Id
markReadMessage
=
latestM
essage
),
if
(
Build
.
VERSION
.
SDK_INT
<
Build
.
VERSION_CODES
.
S
)
0
else
PendingIntent
.
FLAG_MUTABLE
...
...
@@ -157,11 +169,11 @@ class QuasseldroidNotificationManager @Inject constructor(private val context: C
val
deletePendingIntent
=
PendingIntent
.
getService
(
context
.
applicationContext
,
System
.
currentTimeMillis
().
toInt
()
,
requestCode
.
delete
,
QuasselService
.
intent
(
context
,
bufferId
=
buffer
.
id
,
hideMessage
=
notifications
.
last
().
m
essage
Id
hideMessage
=
latestM
essage
),
if
(
Build
.
VERSION
.
SDK_INT
<
Build
.
VERSION_CODES
.
S
)
0
else
PendingIntent
.
FLAG_MUTABLE
...
...
This diff is collapsed.
Click to expand it.
Janne Mareike Koschinski
@justJanne
mentioned in issue
#216 (closed)
·
4 months ago
mentioned in issue
#216 (closed)
mentioned in issue #216
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment