Statistics not tracked when the user is not a test user fixed
This commit is contained in:
parent
3e374db722
commit
cc73c679e5
1 changed files with 2 additions and 2 deletions
|
@ -242,11 +242,11 @@ async function getByEmail(context, listId, email, grouped = true) {
|
|||
return result;
|
||||
}
|
||||
|
||||
async function getByCid(context, listId, cid, grouped = true, isTest = true) {
|
||||
async function getByCid(context, listId, cid, grouped = true, isTest = false) {
|
||||
return await _getBy(context, listId, 'cid', cid, grouped, isTest);
|
||||
}
|
||||
|
||||
async function getByCidTx(tx, context, listId, cid, grouped = true, isTest = true) {
|
||||
async function getByCidTx(tx, context, listId, cid, grouped = true, isTest = false) {
|
||||
return await _getByTx(tx, context, listId, 'cid', cid, grouped, isTest);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue