Hi, we are using advanced targeting (mongoDB syntax) for targeting specific versions (starting 23.9 and up etc) and we noticed that if targeting by country is following - it is ignored (we see users outside of the targeted countries).
Example:
{
"os": {"$in": ["android"]},
"$or": [
{"version_major": {"$gt": 23}},
{
"$and": [
{"version_major": {"$eq": 23}},
{"version_minor": {"$gte": 9}}
]
}
],
"country_code": {
"$in": [
43,
41
]
}
}
Any leads would be appreciated.