Skip to content

Commit

Permalink
Added tracking api to multi Application
Browse files Browse the repository at this point in the history
  • Loading branch information
scottf committed Sep 3, 2024
1 parent 5e1465f commit 1e490fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public interface OptionsFactory {
enum OptionsType { ADMIN, DEFAULT}

default Options.Builder getOptionsBuilder(Context ctx, OptionsType ot) {
String server = ot == OptionsType.ADMIN ? null : getServer(ctx);
String server = getServer(ctx, ot);
return new Options.Builder()
.server(server)
.authHandler(getAuthHandler(ctx))
Expand Down

0 comments on commit 1e490fc

Please sign in to comment.