File tree Expand file tree Collapse file tree 4 files changed +15
-12
lines changed Expand file tree Collapse file tree 4 files changed +15
-12
lines changed Original file line number Diff line number Diff line change
1
+ ## 22.06.4
2
+ - Fixed an issue with remote configs not working without a parameter
3
+
1
4
## 22.06.3
2
5
- Fixed an issue that arose when sending crashes through a gateway. User agent information is now sent as part of the request.
3
6
Original file line number Diff line number Diff line change 175
175
*/
176
176
Countly . onload = Countly . onload || [ ] ;
177
177
178
- var SDK_VERSION = "22.06.3 " ;
178
+ var SDK_VERSION = "22.06.4 " ;
179
179
var SDK_NAME = "javascript_native_web" ;
180
180
181
181
var urlParseRE = / ^ ( ( ( ( [ ^ : \/ # \? ] + : ) ? (?: ( \/ \/ ) ( (?: ( ( [ ^ : @ \/ # \? ] + ) (?: \: ( [ ^ : @ \/ # \? ] + ) ) ? ) @ ) ? ( ( [ ^ : \/ # \? \] \[ ] + | \[ [ ^ \/ \] @ # ? ] + \] ) (?: \: ( [ 0 - 9 ] + ) ) ? ) ) ? ) ? ) ? ( ( \/ ? (?: [ ^ \/ \? # ] + \/ + ) * ) ( [ ^ \? # ] * ) ) ) ? ( \? [ ^ # ] + ) ? ) ( # .* ) ? / ;
1682
1682
method : "rc"
1683
1683
} ;
1684
1684
// check if keys were provided
1685
- if ( keys . length > 0 ) {
1685
+ if ( keys ) {
1686
1686
request . keys = JSON . stringify ( keys ) ;
1687
1687
}
1688
1688
// check if omit_keys were provided
1689
- if ( omit_keys . length > 0 ) {
1689
+ if ( omit_keys ) {
1690
1690
request . omit_keys = JSON . stringify ( omit_keys ) ;
1691
1691
}
1692
1692
var providedCall ;
You can’t perform that action at this time.
0 commit comments