mirror of
https://github.com/LukeHagar/plexcsharp.git
synced 2025-12-07 12:37:45 +00:00
ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.204.1
This commit is contained in:
@@ -16,8 +16,14 @@ namespace PlexAPI.Utils
|
||||
|
||||
internal static class SecuritySerializer
|
||||
{
|
||||
public static ISpeakeasyHttpClient Apply(ISpeakeasyHttpClient client, object security)
|
||||
public static ISpeakeasyHttpClient Apply(ISpeakeasyHttpClient client, Func<object> securitySource)
|
||||
{
|
||||
if (securitySource == null)
|
||||
{
|
||||
return client;
|
||||
}
|
||||
|
||||
var security = securitySource();
|
||||
if (security == null)
|
||||
{
|
||||
return client;
|
||||
|
||||
Reference in New Issue
Block a user