Skip to content

Commit fe71d90

Browse files
committed
fix: rename skip publisher
1 parent 41a8001 commit fe71d90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sentry/src/routes/analytics.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ pub async fn process_analytics<A: Adapter>(
128128
req: Request<Body>,
129129
app: &Application<A>,
130130
is_advertiser: bool,
131-
skip_publisher: bool,
131+
skip_publisher_filter: bool,
132132
) -> Result<String, ResponseError> {
133133
let query = serde_urlencoded::from_str::<AnalyticsQuery>(&req.uri().query().unwrap_or(""))?;
134134
query.is_valid()?;
@@ -154,7 +154,7 @@ pub async fn process_analytics<A: Adapter>(
154154
};
155155
}
156156

157-
let select_query = match (skip_publisher, sess) {
157+
let select_query = match (skip_publisher_filter, sess) {
158158
(false, Some(session)) => {
159159
where_clauses.push(format!(
160160
"events->'{}'->'{}'->'{}' IS NOT NULL",

0 commit comments

Comments
 (0)