Skip to content

Commit

Permalink
Support non-ASCII file names in appdistribution:distribute (#6409)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybaroneee authored Sep 27, 2023
1 parent 3848eb3 commit c17a9c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/appdistribution/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export class AppDistributionClient {
method: "POST",
path: `/upload/v1/${appName}/releases:upload`,
headers: {
"X-Goog-Upload-File-Name": distribution.getFileName(),
"X-Goog-Upload-File-Name": encodeURIComponent(distribution.getFileName()),
"X-Goog-Upload-Protocol": "raw",
"Content-Type": "application/octet-stream",
},
Expand Down

0 comments on commit c17a9c1

Please sign in to comment.