Skip to content

Commit

Permalink
fix: loupedeck surface type naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Nov 18, 2023
1 parent 7783fa9 commit 7d82ba4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Surface/USB/LoupedeckCt.js
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ class SurfaceUSBLoupedeckCt extends EventEmitter {
}

async #init() {
this.logger.debug(`Loupedeck ${this.#loupedeck.modelName} detected`)
this.logger.debug(`${this.#loupedeck.modelName} detected`)

// Make sure the first clear happens properly
await this.#loupedeck.blankDevice(true, true)
Expand Down
2 changes: 1 addition & 1 deletion lib/Surface/USB/LoupedeckLive.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ class SurfaceUSBLoupedeckLive extends EventEmitter {
this.logger.debug(`Adding Loupedeck Live USB device ${devicePath}`)

this.info = {
type: `Loupedeck ${this.#loupedeck.modelName}`,
type: this.#loupedeck.modelName,
devicePath: devicePath,
configFields: ['brightness'],
deviceId: `loupedeck:${serialNumber}`,
Expand Down

0 comments on commit 7d82ba4

Please sign in to comment.