Skip to content

Commit 97bfe36

Browse files
committed
Fix another auto-formatter issue
1 parent d8972a9 commit 97bfe36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/me/proxer/app/notification/NotificationViewModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class NotificationViewModel : BaseContentViewModel<List<ProxerNotification>>() {
2626

2727
override val dataSingle: Single<List<ProxerNotification>>
2828
get() = super.dataSingle.doOnSuccess {
29-
it.firstOrNull()?.date.let {
29+
it.firstOrNull()?.date?.let {
3030
StorageHelper.lastNotificationsDate = it
3131
}
3232
}

0 commit comments

Comments
 (0)