You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sentry/src/lib.rs
+11-13Lines changed: 11 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -60,8 +60,7 @@ lazy_static! {
60
60
static ref ANALYTICS_BY_CHANNEL_ID:Regex = Regex::new(r"^/analytics/0x([a-zA-Z0-9]{64})/?$").expect("The regex should be valid");
61
61
static ref ADVERTISER_ANALYTICS_BY_CHANNEL_ID:Regex = Regex::new(r"^/analytics/for-advertiser/0x([a-zA-Z0-9]{64})/?$").expect("The regex should be valid");
62
62
static ref PUBLISHER_ANALYTICS_BY_CHANNEL_ID:Regex = Regex::new(r"^/analytics/for-publisher/0x([a-zA-Z0-9]{64})/?$").expect("The regex should be valid");
63
-
static ref CREATE_EVENTS_BY_CHANNEL_ID:Regex = Regex::new(r"^/channel/0x([a-zA-Z0-9]{64})/events(/.*)?$").expect("The regex should be valid");
64
-
63
+
static ref CREATE_EVENTS_BY_CHANNEL_ID:Regex = Regex::new(r"^/channel/0x([a-zA-Z0-9]{64})/events/?$").expect("The regex should be valid");
0 commit comments