Commit 765ab94 1 parent f077e38 commit 765ab94 Copy full SHA for 765ab94
File tree 3 files changed +5
-1
lines changed
3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 6
6
7
7
- Protocol validation for source map image type. ([ #1869 ] ( https://github.com/getsentry/relay/pull/1869 ) )
8
8
- Add PHP support for profiling. ([ #1871 ] ( https://github.com/getsentry/relay/pull/1871 ) )
9
+ - Add Javascript support for profiling. ([ #1871 ] ( https://github.com/getsentry/relay/pull/1876 ) )
9
10
10
11
** Internal** :
11
12
Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ pub use crate::outcomes::discard_reason;
119
119
enum Platform {
120
120
Android ,
121
121
Cocoa ,
122
+ Javascript ,
122
123
Node ,
123
124
Php ,
124
125
Python ,
Original file line number Diff line number Diff line change @@ -175,7 +175,9 @@ impl SampleProfile {
175
175
&& self . device . manufacturer . is_some ( )
176
176
&& self . device . model . is_some ( )
177
177
}
178
- Platform :: Python | Platform :: Node | Platform :: Php => self . runtime . is_some ( ) ,
178
+ Platform :: Python | Platform :: Javascript | Platform :: Node | Platform :: Php => {
179
+ self . runtime . is_some ( )
180
+ }
179
181
_ => true ,
180
182
}
181
183
}
You can’t perform that action at this time.
0 commit comments