We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 850ff03 commit 8a96d6aCopy full SHA for 8a96d6a
app/src/main/java/org/session/libsession/messaging/jobs/JobQueue.kt
@@ -200,6 +200,7 @@ class JobQueue : JobDelegate {
200
val pendingJobs = mutableListOf<Job>()
201
for ((id, job) in allPendingJobs) {
202
if (job == null) {
203
+ Log.e("JobQueue", "Dropping incompatible job type=$typeKey id=$id (deserialize returned null)")
204
// Job failed to deserialize, remove it from the DB
205
handleJobFailedPermanently(id)
206
} else {
0 commit comments