Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion waterbutler/providers/googledrive/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ async def _handle_docs_versioning(self, path: GoogleDrivePath, item: dict, raw:
async def _folder_metadata(self,
path: WaterButlerPath,
raw: bool=False) -> List[Union[BaseGoogleDriveMetadata, dict]]:
query = self._build_query(path.identifier)
query = self._build_query(path.identifier) if path.identifier != 'root' else {}
built_url = self.build_url('files', q=query, alt='json', maxResults=1000)
full_resp = []
while built_url:
Expand Down