From 0d1b37d49741cf9cad5d35ee7eb550f151611349 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 17 Apr 2026 13:19:20 +0000 Subject: [PATCH] feat: Updated OpenAPI spec --- src/libs/Descript/Generated/Descript.OptionsSupport.g.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/Descript/Generated/Descript.OptionsSupport.g.cs b/src/libs/Descript/Generated/Descript.OptionsSupport.g.cs index 0a88ad3..c2d993f 100644 --- a/src/libs/Descript/Generated/Descript.OptionsSupport.g.cs +++ b/src/libs/Descript/Generated/Descript.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();