Rename isStreamExist -> doesStreamExist
This commit is contained in:
parent
cea14c9d0d
commit
55c51ad49d
2 changed files with 2 additions and 2 deletions
|
@ -72,7 +72,7 @@ class FeedDatabaseManager(context: Context) {
|
||||||
fun markAsOutdated(subscriptionId: Long) = feedTable
|
fun markAsOutdated(subscriptionId: Long) = feedTable
|
||||||
.setLastUpdatedForSubscription(FeedLastUpdatedEntity(subscriptionId, null))
|
.setLastUpdatedForSubscription(FeedLastUpdatedEntity(subscriptionId, null))
|
||||||
|
|
||||||
fun isStreamExist(stream: StreamInfoItem): Boolean {
|
fun doesStreamExist(stream: StreamInfoItem): Boolean {
|
||||||
return streamTable.exists(stream.serviceId, stream.url)
|
return streamTable.exists(stream.serviceId, stream.url)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -199,7 +199,7 @@ class FeedLoadManager(private val context: Context) {
|
||||||
private fun countNewStreams(list: List<StreamInfoItem>): Int {
|
private fun countNewStreams(list: List<StreamInfoItem>): Int {
|
||||||
var count = 0
|
var count = 0
|
||||||
for (item in list) {
|
for (item in list) {
|
||||||
if (feedDatabaseManager.isStreamExist(item)) {
|
if (feedDatabaseManager.doesStreamExist(item)) {
|
||||||
return count
|
return count
|
||||||
} else {
|
} else {
|
||||||
count++
|
count++
|
||||||
|
|
Loading…
Reference in a new issue