Skip to content

Commit

Permalink
Consent removal bug fixed (#22)
Browse files Browse the repository at this point in the history
* Consent removal bug fixed

* Typo fixed
  • Loading branch information
ZahidZafar authored Dec 16, 2022
1 parent 1efe2b9 commit 933e70c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
20.11.5
* Fixed a bug in backend mode while removing consent.

20.11.4
* Adding mitigations to an issue that would surface when stopping a view that was not started.

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# org.gradle.parallel=true

# RELEASE FIELD SECTION
VERSION_NAME=20.11.4
VERSION_NAME=20.11.5
GROUP=ly.count.sdk

POM_URL=https://github.com/Countly/countly-sdk-java
Expand Down
2 changes: 1 addition & 1 deletion sdk-java/src/main/java/ly/count/sdk/java/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ public boolean restore(byte[] data) {
/**
* Countly SDK version to be sent in HTTP requests
*/
protected String sdkVersion = "20.11.4";
protected String sdkVersion = "20.11.5";

/**
* Countly SDK name to be sent in HTTP requests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ public void onRequestCompleted(Request request, String response, int responseCod
@Override
public void stop(CtxCore ctx, boolean clear) {
super.stop(ctx, clear);
executor.shutdownNow();
if(executor != null) {
executor.shutdownNow();
}
}

public void disableModule() {
Expand Down

0 comments on commit 933e70c

Please sign in to comment.