Skip to content
This repository has been archived by the owner on Feb 19, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/fix-sdk-info-calls' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Wendt committed Oct 21, 2015
2 parents 674ab5f + f73e8c8 commit 19d862c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -326,10 +326,10 @@ protected virtual IEnumerator SendLogs(List<string> logs){
string url = GetBaseURL() + crashPath.Replace("[APPID]", appID);

#if (UNITY_ANDROID && !UNITY_EDITOR)
string sdkVersion = HockeyApp_GetSdkVersion ();
string sdkName = HockeyApp_GetSdkName ();
string sdkVersion = GetSdkVersion ();
string sdkName = GetSdkName ();
if (sdkName != null && sdkVersion != null) {
url += "?sdk=" + WWW.EscapeURL(sdkName) + "&sdk_version=" + sdkVersion;
url+= "?sdk=" + WWW.EscapeURL(sdkName) + "&sdk_version=" + sdkVersion;
}
#endif

Expand Down

0 comments on commit 19d862c

Please sign in to comment.