Skip to content

Commit

Permalink
Remove "me in readers" condition (fix Grive#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalif committed Jan 11, 2016
1 parent 86acd18 commit 9841635
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libgrive/src/drive2/Syncer2.cc
Original file line number Diff line number Diff line change
Expand Up @@ -213,12 +213,12 @@ bool Syncer2::Upload( Resource *res, bool new_rev )

std::auto_ptr<Feed> Syncer2::GetFolders()
{
return std::auto_ptr<Feed>( new Feed2( feeds::files + "?maxResults=1000&q=%27me%27+in+readers+and+trashed%3dfalse+and+mimeType%3d%27" + mime_types::folder + "%27" ) );
return std::auto_ptr<Feed>( new Feed2( feeds::files + "?maxResults=1000&q=trashed%3dfalse+and+mimeType%3d%27" + mime_types::folder + "%27" ) );
}

std::auto_ptr<Feed> Syncer2::GetAll()
{
return std::auto_ptr<Feed>( new Feed2( feeds::files + "?maxResults=1000&q=%27me%27+in+readers+and+trashed%3dfalse" ) );
return std::auto_ptr<Feed>( new Feed2( feeds::files + "?maxResults=1000&q=trashed%3dfalse" ) );
}

std::string ChangesFeed( long changestamp, int maxResults = 1000 )
Expand Down

0 comments on commit 9841635

Please sign in to comment.