We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 455659b commit 4235535Copy full SHA for 4235535
src/versions/versions-api-client/versions-api-client.ts
@@ -149,11 +149,16 @@ export class VersionsApiClient {
149
formData.append('size', `${file.size}`);
150
formData.append('symFileName', file.name);
151
152
- if (file.dbgId && file.lastModified && file.moduleName) {
153
- formData.append('moduleName', file.moduleName);
+ if (file.dbgId) {
154
formData.append('dbgId', file.dbgId);
+ }
155
+
156
+ if (file.lastModified) {
157
formData.append('lastModified', `${file.lastModified}`);
- formData.append('SendPdbsVersion', 'bsv1');
158
159
160
+ if (file.moduleName) {
161
+ formData.append('moduleName', file.moduleName);
162
}
163
164
const request = {
0 commit comments