Skip to content

Commit

Permalink
fix: EntryLinkAdapter refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
feelfreelinux committed Nov 7, 2018
1 parent dcbdd2e commit 8e63a8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class EntryLinksAdapter @Inject constructor(

override fun addData(items: List<EntryLink>, shouldClearAdapter: Boolean) {
super.addData(
items.asSequence().filter { !dataset.contains(it) }.filterNot { settingsPreferencesApi.hideBlacklistedViews && if (it.entry != null) it.entry!!.isBlocked else it.link!!.isBlocked }.toList(),
items.asSequence().filterNot { settingsPreferencesApi.hideBlacklistedViews && if (it.entry != null) it.entry!!.isBlocked else it.link!!.isBlocked }.toList(),
shouldClearAdapter
)
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ allprojects {
versionMajor = 0
versionMinor = 9
versionPatch = 7
versionBuild = 2
versionBuild = 3
}
}

Expand Down

0 comments on commit 8e63a8b

Please sign in to comment.