Skip to content

Commit

Permalink
Fix double question mark in http.target
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejgordon committed Sep 9, 2024
1 parent adcfd85 commit cba6fdf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public override void OnEnd(Activity activity)
var target = urlPath;

if (urlQuery is not null)
target += $"?{urlQuery}";
target += urlQuery;

SetStringAttribute(HttpTarget, target);
}
Expand Down

0 comments on commit cba6fdf

Please sign in to comment.