We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41a8001 commit fe71d90Copy full SHA for fe71d90
sentry/src/routes/analytics.rs
@@ -128,7 +128,7 @@ pub async fn process_analytics<A: Adapter>(
128
req: Request<Body>,
129
app: &Application<A>,
130
is_advertiser: bool,
131
- skip_publisher: bool,
+ skip_publisher_filter: bool,
132
) -> Result<String, ResponseError> {
133
let query = serde_urlencoded::from_str::<AnalyticsQuery>(&req.uri().query().unwrap_or(""))?;
134
query.is_valid()?;
@@ -154,7 +154,7 @@ pub async fn process_analytics<A: Adapter>(
154
};
155
}
156
157
- let select_query = match (skip_publisher, sess) {
+ let select_query = match (skip_publisher_filter, sess) {
158
(false, Some(session)) => {
159
where_clauses.push(format!(
160
"events->'{}'->'{}'->'{}' IS NOT NULL",
0 commit comments