Skip to content

Commit

Permalink
fix(automate): remove extra slash (#3612)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdriesler authored Aug 15, 2024
2 parents 0ec1f10 + ef5692d commit 232f87c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Automate/Speckle.Automate.Sdk/AutomationContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ public async Task StoreFileResult(string filePath)
formData.Add(streamContent, "files", Path.GetFileName(filePath));
HttpResponseMessage? request = await SpeckleClient.GQLClient.HttpClient
.PostAsync(
new Uri($"{AutomationRunData.SpeckleServerUrl}/api/stream/{AutomationRunData.ProjectId}/blob"),
new Uri($"{AutomationRunData.SpeckleServerUrl}api/stream/{AutomationRunData.ProjectId}/blob"),
formData
)
.ConfigureAwait(false);
Expand Down

0 comments on commit 232f87c

Please sign in to comment.