Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Content Interface fix #388

Merged
merged 1 commit into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1032,7 +1032,7 @@ protected synchronized CountlyConfig disableHealthCheck() {
*
* @apiNote This is an EXPERIMENTAL feature, and it can have breaking changes
*/
public final ConfigContent contents = new ConfigContent();
public final ConfigContent content = new ConfigContent();

/**
* Experimental configuration interface to be used with CountlyConfig
Expand Down
4 changes: 2 additions & 2 deletions sdk/src/main/java/ly/count/android/sdk/ModuleContent.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ public class ModuleContent extends ModuleBase {

contentInterface = new Content();
countlyTimer = new CountlyTimer();
contentUpdateInterval = config.contents.contentUpdateInterval;
globalContentCallback = config.contents.globalContentCallback;
contentUpdateInterval = config.content.contentUpdateInterval;
globalContentCallback = config.content.globalContentCallback;
}

void fetchContentsInternal(@NonNull String[] categories) {
Expand Down
Loading