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 fd67e74 commit 9e37f95Copy full SHA for 9e37f95
src/resource.ts
@@ -183,8 +183,12 @@ class Resource {
183
public async post(videomail: PartialVideomail) {
184
const newVideomail: PartialVideomail = this.applyDefaultValues(videomail);
185
186
+ if (!newVideomail.versions) {
187
+ newVideomail.versions = {};
188
+ }
189
+
190
// Always good to know the version of the client the videomail was submitted with
- newVideomail[Constants.VERSION_LABEL] = videomailClientVersion;
191
+ newVideomail.versions.videomailClient = videomailClientVersion;
192
193
// Likewise, good to know where it has been recorded
194
newVideomail.recordLocation = window.location.href;
0 commit comments