--- Merging r46985 into '.':

U    packages/googleapi/src/googledrive.pp
--- Recording mergeinfo for merge of r46985 into '.':
 U   .

# revisions: 46985
r46985 | michael | 2020-09-28 09:55:27 +0200 (Mon, 28 Sep 2020) | 1 line
Changed paths:
   M /trunk/packages/googleapi/src/googledrive.pp

* Fix bug ID #37824

git-svn-id: branches/fixes_3_2@47096 -
This commit is contained in:
marco 2020-10-12 06:07:55 +00:00
parent 2b9ddf3bee
commit 891d3a7487

View File

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