Skip to content

Commit

Permalink
fix issue #46
Browse files Browse the repository at this point in the history
  • Loading branch information
SylvanasX authored and kzaher committed Feb 9, 2019
1 parent 1b152d6 commit c17205a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Examples/Examples/GithubPaginatedSearch.swift
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@ class GithubPaginatedSearchViewController: UIViewController {
return Signal.empty()
}

return searchResults.rx.nearBottom.map { _ in Event.scrollingNearBottom }
return searchResults.rx.nearBottom
.skip(1)
.map { _ in Event.scrollingNearBottom }
}
}

Expand Down

0 comments on commit c17205a

Please sign in to comment.