Skip to content

Commit

Permalink
Fix double detection process occurring at the same time, fix #229
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-rabault committed Sep 18, 2023
1 parent 43a42b5 commit 5f118f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/core/src/luos_engine.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,12 +172,12 @@ void Luos_Loop(void)
if (Flag_DetectServices == 1)
{

Flag_DetectServices = 0;
// Set the detection launcher id to 1
detection_service->id = 1;
// Generate the filters
Service_GenerateId(1);
RoutingTB_DetectServices(detection_service);
Flag_DetectServices = 0;
}
}
/******************************************************************************
Expand Down

0 comments on commit 5f118f3

Please sign in to comment.