@forge/util

2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/cisco.webex/index.js
~packages/ari/cisco.webex/index.jsModified
+4−1
Index: package/packages/ari/cisco.webex/index.js
===================================================================
--- package/packages/ari/cisco.webex/index.js
+++ package/packages/ari/cisco.webex/index.js
@@ -282,20 +282,23 @@
 var ciscoWebexRemoteLinkAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "third-party",
   cloudId: new RegExp("^$"),
+  // eslint-disable-line no-useless-escape
   resourceOwner: CiscoWebexRemoteLinkAriResourceOwner,
   resourceType: CiscoWebexRemoteLinkAriResourceType,
   resourceIdSlug: "recording/{recordingId}",
   resourceIdSegmentFormats: {
     recordingId: /[a-zA-Z0-9]{32}/
+    // eslint-disable-line no-useless-escape
   }
 };
 
 // src/cisco.webex/remote-link/index.ts
 var CiscoWebexRemoteLinkAri = class _CiscoWebexRemoteLinkAri extends RegisteredAri {
   constructor(opts) {
-    super(opts), this._recordingId = opts.resourceIdSegmentValues.recordingId;
+    super(opts);
+    this._recordingId = opts.resourceIdSegmentValues.recordingId;
   }
   get recordingId() {
     return this._recordingId;
   }