@@ -14,34 +14,34 @@ if(!PlayFab.settings) {
1414 // Disabling this may prevent your advertising-related PlayFab marketplace partners from working correctly
1515 disableAdvertising : false ,
1616 AD_TYPE_IDFA : "Idfa" ,
17- AD_TYPE_ANDROID_ID : "Adid"
17+ AD_TYPE_ANDROID_ID : "Adid" ,
18+ productionServerUrl : ".playfabapi.com"
1819 }
1920}
2021
2122if ( ! PlayFab . _internalSettings ) {
2223 PlayFab . _internalSettings = {
2324 entityToken : null ,
24- sdkVersion : "1.69.200713 " ,
25+ sdkVersion : "1.70.200730 " ,
2526 requestGetParams : {
26- sdk : "JavaScriptSDK-1.69.200713 "
27+ sdk : "JavaScriptSDK-1.70.200730 "
2728 } ,
2829 sessionTicket : null ,
2930 verticalName : null , // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
30- productionServerUrl : ".playfabapi.com" ,
3131 errorTitleId : "Must be have PlayFab.settings.titleId set to call this method" ,
3232 errorLoggedIn : "Must be logged in to call this method" ,
3333 errorEntityToken : "You must successfully call GetEntityToken before calling this" ,
3434 errorSecretKey : "Must have PlayFab.settings.developerSecretKey set to call this method" ,
3535
3636 GetServerUrl : function ( ) {
37- if ( ! ( PlayFab . _internalSettings . productionServerUrl . substring ( 0 , 4 ) === "http" ) ) {
37+ if ( ! ( PlayFab . settings . productionServerUrl . substring ( 0 , 4 ) === "http" ) ) {
3838 if ( PlayFab . _internalSettings . verticalName ) {
39- return "https://" + PlayFab . _internalSettings . verticalName + PlayFab . _internalSettings . productionServerUrl ;
39+ return "https://" + PlayFab . _internalSettings . verticalName + PlayFab . settings . productionServerUrl ;
4040 } else {
41- return "https://" + PlayFab . settings . titleId + PlayFab . _internalSettings . productionServerUrl ;
41+ return "https://" + PlayFab . settings . titleId + PlayFab . settings . productionServerUrl ;
4242 }
4343 } else {
44- return PlayFab . _internalSettings . productionServerUrl ;
44+ return PlayFab . settings . productionServerUrl ;
4545 }
4646 } ,
4747
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231 }
232232}
233233
234- PlayFab . buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0 " ;
235- PlayFab . sdkVersion = "1.69.200713 " ;
234+ PlayFab . buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_2 " ;
235+ PlayFab . sdkVersion = "1.70.200730 " ;
236236PlayFab . GenerateErrorReport = function ( error ) {
237237 if ( error == null )
238238 return "" ;
0 commit comments