-
-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: added multidevice support to query_active_history
#451
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #451 +/- ##
==========================================
+ Coverage 24.22% 24.33% +0.11%
==========================================
Files 27 27
Lines 1540 1553 +13
Branches 251 256 +5
==========================================
+ Hits 373 378 +5
- Misses 1142 1150 +8
Partials 25 25
☔ View full report in Codecov by Sentry. |
src/queries.ts
Outdated
} else { | ||
const afkbucket: string = afkbuckets; | ||
q = q.concat([ | ||
`not_afk = union_no_overlap(not_afk, query_bucket("${escape_doublequote(afkbucket)}");`, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`not_afk = union_no_overlap(not_afk, query_bucket("${escape_doublequote(afkbucket)}");`, | |
`not_afk = union_no_overlap(not_afk, query_bucket("${escape_doublequote(afkbucket)}"));`, |
let q = ['not_afk = [];']; | ||
for (const afkbucket of afkbuckets) { | ||
q = q.concat([ | ||
`not_afk_curr = query_bucket("${escape_doublequote(afkbucket)}");`, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`not_afk_curr = query_bucket("${escape_doublequote(afkbucket)}");`, | |
`not_afk_curr = flood(query_bucket("${escape_doublequote(afkbucket)}"));`, |
No description provided.