Orig:
function DataServiceServer.asyncGetProfile(self: DataServiceServer, userId: number | string): Profile?
local profileKey = DATA_PREFIX .. tostring(userId)
return self.playerStore:GetAsync(profileKey)
end
Fixed:
function DataServiceServer.asyncGetProfile(self: DataServiceServer, userId: number | string): Profile?
local profileKey = (self.options.profileStoreDataPrefix or DATA_PREFIX) .. tostring(userId)
return self.playerStore:GetAsync(profileKey)
end
Orig:
Fixed: