Skip to content

Commit

Permalink
fix: typo in infinitton driver
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Aug 19, 2023
1 parent a0e9730 commit 1b709e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Surface/USB/Handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ process.on('message', (data) => {
} else if (data.type === 'loupedeck-live') {
driver_instance = await LoupedeckLiveDriver.create(ipcWrapper, data.devicePath)
} else if (data.type === 'infinitton') {
driver_instance = InfinittonDriver.create(ipcWrapper, data.devicePath)
driver_instance = await InfinittonDriver.create(ipcWrapper, data.devicePath)
} else if (data.type === 'xkeys') {
driver_instance = await XKeysDriver.create(ipcWrapper, data.devicePath)
} else if (data.type === 'contour-shuttle') {
Expand Down

0 comments on commit 1b709e9

Please sign in to comment.