Skip to content

Commit

Permalink
Added semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox authored Aug 25, 2024
1 parent aebc6a7 commit ea7f565
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const GoogleHome = require('./lib/googleHome');
const YandexAlisa = require('./lib/alisa');
const Remote = require('./lib/remote');
const packageJSON = require('./package.json');
const { handleGeofenceData, handleDevicesData, handleSendToAdapter, handleGetInstances } = require('./lib/visuApp.js')
const { handleGeofenceData, handleDevicesData, handleSendToAdapter, handleGetInstances } = require('./lib/visuApp.js');

const version = packageJSON.version;
// @ts-ignore
Expand Down Expand Up @@ -889,7 +889,7 @@ async function processMessage(type, request) {

if (visuData.command === 'getInstances') {
const res = await handleGetInstances(visuData, adapter);
return { result: 'Ok', ...res }
return { result: 'Ok', ...res };
}

if (visuData.command === 'sendToAdapter') {
Expand Down

0 comments on commit ea7f565

Please sign in to comment.