File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ public PagedInstalledApps GetAllInstalledApps(string locationId = null)
101
101
{
102
102
if ( locationId != null )
103
103
{
104
- _allInstalledApps = _installedAppsApi . ListInstallations ( locationId ) ;
104
+ _allInstalledApps = _installedAppsApi . ListInstallations ( _accessToken , locationId ) ;
105
105
}
106
106
else
107
107
{
@@ -111,7 +111,7 @@ public PagedInstalledApps GetAllInstalledApps(string locationId = null)
111
111
{
112
112
foreach ( var location in locations . Items )
113
113
{
114
- var locationApps = _installedAppsApi . ListInstallations ( location . LocationId . ToString ( ) ) ;
114
+ var locationApps = _installedAppsApi . ListInstallations ( _accessToken , location . LocationId . ToString ( ) ) ;
115
115
if ( locationApps . Items ? . Count > 0 )
116
116
{
117
117
_allInstalledApps . Items ??= new List < InstalledApp > ( ) ;
You can’t perform that action at this time.
0 commit comments