Commit f118b70 1 parent d66c8c5 commit f118b70 Copy full SHA for f118b70
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 7
7
- Protocol validation for source map image type. ([ #1869 ] ( https://github.com/getsentry/relay/pull/1869 ) )
8
8
- Strip quotes from client hint values. ([ #1874 ] ( https://github.com/getsentry/relay/pull/1874 ) )
9
9
- Add PHP support for profiling. ([ #1871 ] ( https://github.com/getsentry/relay/pull/1871 ) )
10
+ - Add Javascript support for profiling. ([ #1876 ] ( https://github.com/getsentry/relay/pull/1876 ) )
10
11
11
12
** Bug Fixes** :
12
13
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