Skip to content

Commit

Permalink
removed Scraping Ids from Session because it doesn't exist on the Ple…
Browse files Browse the repository at this point in the history
…x API
  • Loading branch information
Kevin Jensen authored and Kevin Jensen committed Oct 18, 2022
1 parent 8bdb7e8 commit 40519f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Source/Plex.Library/Plex.Library.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AutoMapper" Version="11.0.1" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="11.0.0" />
<PackageReference Include="AutoMapper" Version="12.0.0" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
3 changes: 1 addition & 2 deletions Source/Plex.ServerApi/Clients/PlexServerClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,7 @@ public async Task<SessionContainer> GetSessionsAsync(string authToken, string pl
{ "includePreferences", "1" },
{ "includeExtras", "1" },
{ "includeStations", "1" },
{ "includeChapters", "1" },
{ "includeGuids", "1" }
{ "includeChapters", "1" }
};
return await this.FetchWithWrapper<SessionContainer>(plexServerHost, "status/sessions",
authToken, HttpMethod.Get, queryParams);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,6 @@ public class SessionMetadata
[JsonPropertyName("TranscodeSession")]
public TranscodeSession TranscodeSessions { get; set; }

[JsonPropertyName("Guid")]
public List<ScrapingId> ScrapingIds { get; set; }

[JsonPropertyName("Collection")]
public List<Collection> Collections { get; set; }

Expand Down

0 comments on commit 40519f8

Please sign in to comment.