Skip to content

Commit 69fb2fc

Browse files
authored
Merge pull request #21 from TaloDev/develop
Release 0.5.1
2 parents b3c0b95 + 58778e4 commit 69fb2fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Packages/com.trytalo.talo/Runtime/StatsAPI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public async void Track(string internalName, float change = 1f)
1313
Talo.IdentityCheck();
1414

1515
var req = new HttpRequestMessage();
16-
req.Method = HttpMethod.Post;
16+
req.Method = HttpMethod.Put;
1717
req.RequestUri = new Uri(baseUrl + $"/{internalName}");
1818

1919
string content = JsonUtility.ToJson(new StatsPutRequest(change));

Packages/com.trytalo.talo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.trytalo.talo",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"displayName": "Talo Game Services",
55
"description": "Talo (https://trytalo.com) is an open-source game backend with services designed to help you build games faster. You can currently:\n\n- Identify players\n- Store persistent data across players\n- Track events (levelling up, finding loot, etc)\n- Display high scores with leaderboards\n- Store and load player saves",
66
"unity": "2019.1",

0 commit comments

Comments
 (0)