Fix crash after feed update

This commit is contained in:
Koitharu 2023-07-14 11:41:52 +03:00
parent f8599d17c2
commit 01b46edf1a
No known key found for this signature in database
GPG Key ID: 676DEE768C17A9D7
1 changed files with 1 additions and 7 deletions

View File

@ -95,13 +95,7 @@ class FeedLoadService : Service() {
.doOnSubscribe {
startForeground(NOTIFICATION_ID, notificationBuilder.build())
}
.subscribe { _, error ->
// There seems to be a bug in the kotlin plugin as it tells you when
// building that this can't be null:
// "Condition 'error != null' is always 'true'"
// However it can indeed be null
// The suppression may be removed in further versions
@Suppress("SENSELESS_COMPARISON")
.subscribe { _, error: Throwable? -> // explicitly mark error as nullable
if (error != null) {
Log.e(TAG, "Error while storing result", error)
handleError(error)