From e3cd8a223f7debe5eac492132b9eaa1bc1b84e2b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 17 Apr 2026 13:46:37 +0000 Subject: [PATCH] feat: Updated OpenAPI spec --- src/libs/Inworld/Generated/Inworld.OptionsSupport.g.cs | 2 +- src/libs/Inworld/Generated/Inworld.Realtime.OptionsSupport.g.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libs/Inworld/Generated/Inworld.OptionsSupport.g.cs b/src/libs/Inworld/Generated/Inworld.OptionsSupport.g.cs index d58e92a..4f1351d 100644 --- a/src/libs/Inworld/Generated/Inworld.OptionsSupport.g.cs +++ b/src/libs/Inworld/Generated/Inworld.OptionsSupport.g.cs @@ -381,7 +381,7 @@ internal static string AppendQueryParameters( } var builder = new global::System.Text.StringBuilder(path ?? string.Empty); - var hasQuery = builder.ToString().Contains("?", global::System.StringComparison.Ordinal); + var hasQuery = builder.ToString().IndexOf("?", global::System.StringComparison.Ordinal) >= 0; AppendParameters(builder, clientParameters, ref hasQuery); AppendParameters(builder, requestParameters, ref hasQuery); return builder.ToString(); diff --git a/src/libs/Inworld/Generated/Inworld.Realtime.OptionsSupport.g.cs b/src/libs/Inworld/Generated/Inworld.Realtime.OptionsSupport.g.cs index 1a39f36..f7adf62 100644 --- a/src/libs/Inworld/Generated/Inworld.Realtime.OptionsSupport.g.cs +++ b/src/libs/Inworld/Generated/Inworld.Realtime.OptionsSupport.g.cs @@ -381,7 +381,7 @@ internal static string AppendQueryParameters( } var builder = new global::System.Text.StringBuilder(path ?? string.Empty); - var hasQuery = builder.ToString().Contains("?", global::System.StringComparison.Ordinal); + var hasQuery = builder.ToString().IndexOf("?", global::System.StringComparison.Ordinal) >= 0; AppendParameters(builder, clientParameters, ref hasQuery); AppendParameters(builder, requestParameters, ref hasQuery); return builder.ToString();