Skip to content

Commit

Permalink
Updated to v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
the1schwartz committed May 3, 2022
1 parent deb5ea5 commit b235ac7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ If you have any issues or feedback regarding the SDK, please contact our friendl
Changelog
---------
<!--(CHANGELOG_TOP)-->
**2.2.1**
* fixed bug related to game passes purchases

**2.2.0**
* added support for wally
* added support for wally (OBS: breaking changes)

**2.1.35**
* fixed argument order
Expand Down
2 changes: 1 addition & 1 deletion gameanalytics-sdk/GameAnalytics/Version.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
local version = {
SdkVersion = "2.2.0"
SdkVersion = "2.2.1"
}

return version
2 changes: 1 addition & 1 deletion gameanalytics-sdk/GameAnalytics/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ function ga:addBusinessEvent(playerId, options)

if itemType == "Gamepass" and cartType ~= "Website" then
local player = Players:GetPlayerByUserId(playerId)
local playerData = store:GetPlayerData(player)
local playerData = store:GetPlayerDataFromCache(playerId)
if not playerData.OwnedGamepasses then
playerData.OwnedGamepasses = {}
end
Expand Down
2 changes: 1 addition & 1 deletion wally.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gameanalytics/gameanalytics-sdk"
description = "Official Roblox SDK for GameAnalytics. GameAnalytics is a free analytics platform that helps game developers understand their players' behaviour by delivering relevant insights."
version = "2.2.0"
version = "2.2.1"
license = "MIT"
authors = ["GameAnalytics <[email protected]>"]
realm = "shared"
Expand Down

0 comments on commit b235ac7

Please sign in to comment.