Skip to content

Commit 40519f8

Browse files
Kevin JensenKevin Jensen
authored andcommitted
removed Scraping Ids from Session because it doesn't exist on the Plex API
1 parent 8bdb7e8 commit 40519f8

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

Source/Plex.Library/Plex.Library.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
</PropertyGroup>
3434

3535
<ItemGroup>
36-
<PackageReference Include="AutoMapper" Version="11.0.1" />
37-
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="11.0.0" />
36+
<PackageReference Include="AutoMapper" Version="12.0.0" />
37+
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.0" />
3838
</ItemGroup>
3939

4040
<ItemGroup>

Source/Plex.ServerApi/Clients/PlexServerClient.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,7 @@ public async Task<SessionContainer> GetSessionsAsync(string authToken, string pl
238238
{ "includePreferences", "1" },
239239
{ "includeExtras", "1" },
240240
{ "includeStations", "1" },
241-
{ "includeChapters", "1" },
242-
{ "includeGuids", "1" }
241+
{ "includeChapters", "1" }
243242
};
244243
return await this.FetchWithWrapper<SessionContainer>(plexServerHost, "status/sessions",
245244
authToken, HttpMethod.Get, queryParams);

Source/Plex.ServerApi/PlexModels/Server/Sessions/SessionMetadata.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,6 @@ public class SessionMetadata
159159
[JsonPropertyName("TranscodeSession")]
160160
public TranscodeSession TranscodeSessions { get; set; }
161161

162-
[JsonPropertyName("Guid")]
163-
public List<ScrapingId> ScrapingIds { get; set; }
164-
165162
[JsonPropertyName("Collection")]
166163
public List<Collection> Collections { get; set; }
167164

0 commit comments

Comments
 (0)