diff --git a/src/Transport.lua b/src/Transport.lua index 107547b..420eee1 100644 --- a/src/Transport.lua +++ b/src/Transport.lua @@ -81,7 +81,7 @@ function Module:CaptureEvent(EncodedPayload) end return RequestAsync({ - Url = self.BaseUrl .. "/store/", + Url = self.BaseUrl .. "store/", Method = "POST", Headers = { ["Content-Type"] = "application/json", @@ -102,7 +102,7 @@ function Module:CaptureEnvelope(Payload) local Item = HttpService:JSONEncode({type = "session", length = #Payload}) return RequestAsync({ - Url = self.BaseUrl .. "/envelope/", + Url = self.BaseUrl .. "envelope/", Method = "POST", Headers = { ["Content-Type"] = "application/x-sentry-envelope", diff --git a/src/init.lua b/src/init.lua index 15b2c9e..0ff5ec7 100644 --- a/src/init.lua +++ b/src/init.lua @@ -16,7 +16,7 @@ local SDK = setmetatable({}, {__index = HubClass.new()}) HubClass.SDK_INTERFACE = table.freeze({ name = "sentry.roblox.devsparkle", - version = "1.2.0", + version = "1.2.1", }) local SENTRY_PROTOCOL_VERSION = 7 diff --git a/wally.toml b/wally.toml index 5ca47c7..3d9e75f 100644 --- a/wally.toml +++ b/wally.toml @@ -1,9 +1,7 @@ [package] name = "devsparkle/sentry-roblox" description = "An unofficial Roblox SDK for Sentry.io" -version = "1.2.0" +version = "1.2.1" license = "BSD-2-Clause" registry = "https://github.com/UpliftGames/wally-index" realm = "shared" - -[dependencies]