Skip to content

Commit

Permalink
Update ServerRequest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
gdeluna-branch committed Oct 16, 2024
1 parent 76a7e6a commit d6b3def
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,7 @@ public static ServerRequest fromJSON(JSONObject json, Context context) {
*/
private static ServerRequest getExtendedServerRequest(String requestPath, JSONObject post, Context context, boolean initiatedByClient) {
ServerRequest extendedReq = null;

if (requestPath.equalsIgnoreCase(Defines.RequestPath.GetURL.getPath())) {
extendedReq = new ServerRequestCreateUrl(Defines.RequestPath.GetURL, post, context);
} else if (requestPath.equalsIgnoreCase(Defines.RequestPath.RegisterInstall.getPath())) {
Expand All @@ -417,7 +418,7 @@ private static ServerRequest getExtendedServerRequest(String requestPath, JSONOb
}
return extendedReq;
}

/**
* Updates the google ads parameters. This should be called only from a background thread since it involves GADS method invocation using reflection
* Ensure that when there is a valid GAID/AID, remove the SSAID if it's being used
Expand Down

0 comments on commit d6b3def

Please sign in to comment.