File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,14 @@ Gleap.setFrameUrl("http://0.0.0.0:3001");
4
4
Gleap . setApiUrl ( "http://0.0.0.0:9000" ) ;
5
5
Gleap . setWSApiUrl ( "ws://0.0.0.0:8080" ) ;
6
6
7
- Gleap . initialize ( "vcxExo94dQQv7KIXd1BnMgN2bzpwZnoj " ) ;
7
+ Gleap . initialize ( "ogWhNhuiZcGWrva5nlDS8l7a78OfaLlV " ) ;
8
8
9
9
/*Gleap.setUrlHandler((url, newTab) => {
10
10
alert("URL: " + url + " newTab: " + newTab);
11
11
});*/
12
12
13
+ Gleap . setNetworkLogPropsToIgnore ( [ "password" , "token" ] ) ;
14
+
13
15
Gleap . registerCustomAction ( ( customAction ) => {
14
16
console . log ( "Custom action: " , customAction ) ;
15
17
} ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gleap" ,
3
- "version" : " 13.2.5 " ,
3
+ "version" : " 13.2.6 " ,
4
4
"main" : " build/index.js" ,
5
5
"scripts" : {
6
6
"start" : " webpack serve" ,
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ class GleapNetworkIntercepter {
52
52
if ( this . externalRequests && this . externalRequests . length > 0 ) {
53
53
requests = requests . concat ( this . externalRequests ) ;
54
54
}
55
-
55
+
56
56
if ( this . filters && this . filters . length > 0 ) {
57
57
// Perform network log filtering.
58
58
for ( var i = 0 ; i < requests . length ; i ++ ) {
@@ -141,7 +141,7 @@ class GleapNetworkIntercepter {
141
141
}
142
142
143
143
setFilters ( filters ) {
144
- this . filters = filters ? filters : [ ] ;
144
+ this . filters = this . filters . concat ( filters ? filters : [ ] ) ;
145
145
}
146
146
147
147
setBlacklist ( blacklist ) {
You can’t perform that action at this time.
0 commit comments