Fix search
This commit is contained in:
parent
7bad18e9b1
commit
f2af4b2403
@ -267,8 +267,8 @@ test $(sqlite3 twitter.db "select count(*) from tweets where user_id = (select i
|
|||||||
|
|
||||||
|
|
||||||
# Test search
|
# Test search
|
||||||
#tw search "from:michaelmalice constitution"
|
tw search "from:michaelmalice constitution"
|
||||||
#test $(sqlite3 twitter.db "select count(*) from tweets where user_id = 44067298 and text like '%constitution%'") -gt "30" # Not sure exactly how many
|
test $(sqlite3 twitter.db "select count(*) from tweets where user_id = 44067298 and text like '%constitution%'") -gt "30" # Not sure exactly how many
|
||||||
|
|
||||||
|
|
||||||
# Test fetching a banned user
|
# Test fetching a banned user
|
||||||
|
@ -337,7 +337,7 @@ func (api API) GetMoreTweetsFromSearch(query string, response *TweetResponse, ma
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if fresh_response.GetCursor() == last_response.GetCursor() && len(fresh_response.GlobalObjects.Tweets) == 0 {
|
if fresh_response.GetCursor() == last_response.GetCursor() || len(fresh_response.GlobalObjects.Tweets) == 0 {
|
||||||
// Empty response, cursor same as previous: end of feed has been reached
|
// Empty response, cursor same as previous: end of feed has been reached
|
||||||
return END_OF_FEED
|
return END_OF_FEED
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user