Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions ProfileStore.luau
Original file line number Diff line number Diff line change
Expand Up @@ -515,8 +515,6 @@ local function UpdateAsync(profile_store, profile_key, transform_params, is_user

local next_in_queue = WaitInUpdateQueue(SessionToken(profile_store.Name, profile_key, is_user_mock))

local success = true

local success, error_message = pcall(function()
local transform_function = function(latest_data)

Expand Down Expand Up @@ -1995,7 +1993,7 @@ function ProfileVersionQuery:NextAsync()
is_finished = true
end)

local success, error_message = pcall(function()
local success = pcall(function()
self.query_pages:AdvanceToNextPageAsync()
self.query_index = 0
end)
Expand Down