mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Fixing issues with finding stories from interactions.
This commit is contained in:
parent
ea28212ecb
commit
929d698d3c
2 changed files with 3 additions and 2 deletions
|
@ -1275,6 +1275,7 @@ heightForRowAtIndexPath:(NSIndexPath *)indexPath {
|
|||
UIInterfaceOrientationIsPortrait(orientation) &&
|
||||
!self.isDashboardModule;
|
||||
}
|
||||
|
||||
- (void)checkScroll {
|
||||
NSInteger currentOffset = self.storyTitlesTable.contentOffset.y;
|
||||
NSInteger maximumOffset = self.storyTitlesTable.contentSize.height - self.storyTitlesTable.frame.size.height;
|
||||
|
@ -1286,7 +1287,7 @@ heightForRowAtIndexPath:(NSIndexPath *)indexPath {
|
|||
|
||||
if (maximumOffset - currentOffset <= 500.0 ||
|
||||
(appDelegate.inFindingStoryMode)) {
|
||||
if (storiesCollection.isRiverView) {
|
||||
if (storiesCollection.isRiverView && storiesCollection.activeFolder) {
|
||||
[self fetchRiverPage:storiesCollection.feedPage+1 withCallback:nil];
|
||||
} else {
|
||||
[self fetchFeedDetail:storiesCollection.feedPage+1 withCallback:nil];
|
||||
|
|
|
@ -217,7 +217,7 @@
|
|||
|
||||
if (readFilterPref) {
|
||||
return readFilterPref;
|
||||
} else if (self.isRiverView || self.isSocialRiverView) {
|
||||
} else if (self.activeFolder && (self.isRiverView || self.isSocialRiverView)) {
|
||||
if (readFilterFolderPrefDefault) {
|
||||
return readFilterFolderPrefDefault;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue