Commit eee596b1 authored by Joel Collins's avatar Joel Collins
Browse files

Fixed capture resize in capture payload

parent 46a13964
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -333,7 +333,7 @@ export default {

      // Resizing
      if (this.resizeCapture) {
        payload.size = {
        payload.resize = {
          width: this.resizeDims[0],
          height: this.resizeDims[1]
        };
@@ -348,6 +348,8 @@ export default {
        payload.annotations["Notes"] = this.captureNotes;
      }

      console.log(payload);

      return payload;
    },