@ -16,7 +16,7 @@ class ParticipantRepo {
* @param handler
*/
static getParticipantsBySessionId(sessionId,handler){
let sql ="select w.* from participants w where w.session_id =? ";
let sql ="select p.* from participants w,patients p where and p.id = w.participaint_id and w.session_id =? ";
ImDb.execQuery({
"sql": sql,
"args": [sessionId],