Also fixed the database was storing the article title in place of the source title.
## Types of changes
- [x] I have read the **CONTRIBUTING** document.
- [x] My code follows the code style of this project.
- [ ] I have updated the documentation accordingly.
- [x] I have added tests to cover my changes.
- [x] All new and existing tests passed.
- [x] This is **NOT** translation related.
This closes issue #58
Also fixed the database was storing the article title in place of the source title.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Types of changes
This closes issue #58
Also fixed the database was storing the article title in place of the source title.
@@ -71,6 +71,10 @@ class Repository(private val api: SelfossApi, private val appSettingsService: ApdisplayedItems == ItemType.ALL ||This should be something like this.
@@ -69,0 +72,4 @@(it.starred && displayedItems == ItemType.STARRED)}if (tagFilter != null) {dbItems.filter { it.tags.contains(tagFilter!!.tag) }This should be
dbItems = dbItems.filter { it.tags.contains(tagFilter!!.tag) }(withdbItemsbeing a var). Else, it does not filter anything.@@ -69,0 +75,4 @@dbItems.filter { it.tags.contains(tagFilter!!.tag) }}if (sourceFilter != null) {dbItems.filter { it.sourcetitle == sourceFilter!!.title }This should be
dbItems = dbItems.filter { it.tags.contains(tagFilter!!.tag) }(withdbItemsbeing a var). Else, it does not filter anything.Right... I didn't write the tests correctly and assumed that worked...