Skip to content

Commit

Permalink
fix: last modified date format (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyg603 authored Nov 14, 2024
1 parent 207bd15 commit ebb6cd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/symbols/symbols-api-client/symbols-api-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export class SymbolsApiClient {
formData.append('symFileName', file.name);
formData.append('moduleName', file.moduleName);
formData.append('dbgId', file.dbgId);
formData.append('lastModified', `${file.lastModified}`);
formData.append('lastModified', `${file.lastModified?.toISOString()}`);
formData.append('SendPdbsVersion', 'spdbsv2');

const request = {
Expand Down

0 comments on commit ebb6cd8

Please sign in to comment.