Compare commits

..

2 Commits

Author SHA1 Message Date
UlrichKu a9f2c0202f
Merge e6bbf9043b into 197a1f4eda 2024-04-26 13:21:15 +00:00
Lakoja e6bbf9043b 3771: Add an "in reply to" text to a reply 2024-04-26 15:21:02 +02:00
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,6 @@
package com.keylesspalace.tusky.util
import android.util.Log
import androidx.paging.CombinedLoadStates
import androidx.paging.LoadState
import com.keylesspalace.tusky.entity.Notification
@ -75,7 +74,8 @@ fun Notification.toViewData(
this.type,
this.id,
this.account,
this.status?.toViewData(isShowingContent, isExpanded, isCollapsed), // TODO? account null implementation gap; and other locations
// TODO? account null implementation gap; and other locations:
this.status?.toViewData(isShowingContent, isExpanded, isCollapsed),
this.report
)
}