Skip to content

Commit 8e63a8b

Browse files
committedNov 7, 2018
fix: EntryLinkAdapter refresh
1 parent dcbdd2e commit 8e63a8b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎app/src/main/kotlin/io/github/feelfreelinux/wykopmobilny/ui/adapters/EntryLinksAdapter.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class EntryLinksAdapter @Inject constructor(
3838

3939
override fun addData(items: List<EntryLink>, shouldClearAdapter: Boolean) {
4040
super.addData(
41-
items.asSequence().filter { !dataset.contains(it) }.filterNot { settingsPreferencesApi.hideBlacklistedViews && if (it.entry != null) it.entry!!.isBlocked else it.link!!.isBlocked }.toList(),
41+
items.asSequence().filterNot { settingsPreferencesApi.hideBlacklistedViews && if (it.entry != null) it.entry!!.isBlocked else it.link!!.isBlocked }.toList(),
4242
shouldClearAdapter
4343
)
4444
}

‎build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ allprojects {
2727
versionMajor = 0
2828
versionMinor = 9
2929
versionPatch = 7
30-
versionBuild = 2
30+
versionBuild = 3
3131
}
3232
}
3333

0 commit comments

Comments
 (0)
Please sign in to comment.