Skip to content

Commit 0c24f1c

Browse files
committed
fix: merge error
this.url is not used anymore in the functions body
1 parent c26ee70 commit 0c24f1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Services/cayenne.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ class Cayenne extends Request {
711711
* @param {String} [payload.ipso]
712712
*/
713713
updateDeviceTypeUse(deviceTypeId, useId, payload) {
714-
const url = `${this.url}/things/types/${deviceTypeId}/uses/${useId}`;
714+
const url = `/things/types/${deviceTypeId}/uses/${useId}`;
715715
return this.send('PUT', url, { payload });
716716
}
717717

0 commit comments

Comments
 (0)