Browse Source

* Fix bug ID #37824

git-svn-id: trunk@46985 -
michael 4 years ago
parent
commit
7c238c24e8
1 changed files with 2 additions and 0 deletions
  1. 2 0
      packages/googleapi/src/googledrive.pp

+ 2 - 0
packages/googleapi/src/googledrive.pp

@@ -1213,6 +1213,7 @@ type
     pageToken : String;
     pageToken : String;
     q : String;
     q : String;
     spaces : String;
     spaces : String;
+    fields: String;
   end;
   end;
   
   
   
   
@@ -4120,6 +4121,7 @@ begin
   AddToQuery(_Q,'pageToken',AQuery.pageToken);
   AddToQuery(_Q,'pageToken',AQuery.pageToken);
   AddToQuery(_Q,'q',AQuery.q);
   AddToQuery(_Q,'q',AQuery.q);
   AddToQuery(_Q,'spaces',AQuery.spaces);
   AddToQuery(_Q,'spaces',AQuery.spaces);
+  AddToQuery(_Q,'fields',AQuery.fields);
   Result:=List(_Q);
   Result:=List(_Q);
 end;
 end;