diff --git a/app/src/main/java/org/thoughtcrime/securesms/stories/landing/StoriesLandingItemData.kt b/app/src/main/java/org/thoughtcrime/securesms/stories/landing/StoriesLandingItemData.kt index 829e128de4..cb628974ee 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/stories/landing/StoriesLandingItemData.kt +++ b/app/src/main/java/org/thoughtcrime/securesms/stories/landing/StoriesLandingItemData.kt @@ -24,8 +24,8 @@ data class StoriesLandingItemData( return when { storyRecipient.isMyStory && !other.storyRecipient.isMyStory -> -1 !storyRecipient.isMyStory && other.storyRecipient.isMyStory -> 1 - storyRecipient.isReleaseNotes && !other.storyRecipient.isReleaseNotes -> 1 - !storyRecipient.isReleaseNotes && other.storyRecipient.isReleaseNotes -> -1 + storyRecipient.isReleaseNotes && !other.storyRecipient.isReleaseNotes -> -1 + !storyRecipient.isReleaseNotes && other.storyRecipient.isReleaseNotes -> 1 storyViewState == StoryViewState.UNVIEWED && other.storyViewState != StoryViewState.UNVIEWED -> -1 storyViewState != StoryViewState.UNVIEWED && other.storyViewState == StoryViewState.UNVIEWED -> 1 else -> -dateInMilliseconds.compareTo(other.dateInMilliseconds)