Skip to content

Commit

Permalink
Fixed file type missing
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalii-bezuhlyi committed Oct 2, 2024
1 parent 936cd9d commit d7f17a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Apps.XTM/Actions/FileActions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ public async Task<UploadTranslationFileResponse> UploadTranslationFile(
UploadStatusResponse uploadStatusResponse;
do
{
uploadStatusResponse = await Client.ExecuteXtmWithJson<UploadStatusResponse>($"{ApiEndpoints.Projects}/{project.ProjectId}/files/translations/{response.File.FileId}/status",
uploadStatusResponse = await Client.ExecuteXtmWithJson<UploadStatusResponse>($"{ApiEndpoints.Projects}/{project.ProjectId}/files/translations/{response.File.FileId}/status?fileType={input.FileType}",
Method.Get,
null,
Creds);
Expand Down

0 comments on commit d7f17a7

Please sign in to comment.