Stop inclusion/exclusion after the first report

This commit is contained in:
Adrian Jagielak
2025-09-24 21:23:16 +02:00
parent 351274f56e
commit 000537585d
2 changed files with 156 additions and 4 deletions

View File

@@ -282,12 +282,26 @@ import { pollVinculum } from './fimp/vinculum';
}
case 'evt.thing.inclusion_report': {
handleInclusionReport();
handleInclusionReport({
hubId,
demoMode,
hubIp,
thingsplexUsername,
thingsplexPassword,
thingsplexAllowEmpty,
});
break;
}
case 'evt.thing.exclusion_report': {
handleExclusionReport();
handleExclusionReport({
hubId,
demoMode,
hubIp,
thingsplexUsername,
thingsplexPassword,
thingsplexAllowEmpty,
});
break;
}