Skip to content

Commit

Permalink
Added support for shared drives
Browse files Browse the repository at this point in the history
  • Loading branch information
mathijs-bb committed May 9, 2024
1 parent 8ab3ef7 commit b91a4fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Apps.GoogleSheets/Apps.GoogleSheets.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<Product>Google Sheets</Product>
<Description>Create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device</Description>
<Version>1.3.1</Version>
<Version>1.3.2</Version>
<AssemblyName>Apps.GoogleSheets</AssemblyName>
</PropertyGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ public Dictionary<string, string> GetData(DataSourceContext context)
{
query += $" and name contains '${context.SearchString}'";
}
filesListr.IncludeItemsFromAllDrives = true;
filesListr.SupportsAllDrives = true;
filesListr.Q = query;
filesListr.PageSize = 20;
var filesList = filesListr.Execute();
Expand Down

0 comments on commit b91a4fb

Please sign in to comment.