Skip to content

Commit

Permalink
fix (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
turtledreams authored Nov 23, 2022
1 parent a1e6074 commit 1c72a3b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 22.06.4
- Fixed an issue with remote configs not working without a parameter

## 22.06.3
- Fixed an issue that arose when sending crashes through a gateway. User agent information is now sent as part of the request.

Expand Down
6 changes: 3 additions & 3 deletions lib/countly.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
*/
Countly.onload = Countly.onload || [];

var SDK_VERSION = "22.06.3";
var SDK_VERSION = "22.06.4";
var SDK_NAME = "javascript_native_web";

var urlParseRE = /^(((([^:\/#\?]+:)?(?:(\/\/)((?:(([^:@\/#\?]+)(?:\:([^:@\/#\?]+))?)@)?(([^:\/#\?\]\[]+|\[[^\/\]@#?]+\])(?:\:([0-9]+))?))?)?)?((\/?(?:[^\/\?#]+\/+)*)([^\?#]*)))?(\?[^#]+)?)(#.*)?/;
Expand Down Expand Up @@ -1682,11 +1682,11 @@
method: "rc"
};
// check if keys were provided
if (keys.length > 0) {
if (keys) {
request.keys = JSON.stringify(keys);
}
// check if omit_keys were provided
if (omit_keys.length > 0) {
if (omit_keys) {
request.omit_keys = JSON.stringify(omit_keys);
}
var providedCall;
Expand Down
Loading

0 comments on commit 1c72a3b

Please sign in to comment.