We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent add5fe6 commit 1548cbdCopy full SHA for 1548cbd
AddonProfiler.lua
@@ -289,7 +289,7 @@ function NAP:PrepareFilteredData()
289
local withinHistory = {};
290
if 0 ~= self.curHistoryRange then
291
for _, bucket in ipairs(self.snapshots.buckets) do
292
- if bucket.tickMap[bucket.curTickIndex] > minTimestamp then
+ if bucket.tickMap and bucket.tickMap[bucket.curTickIndex] and bucket.tickMap[bucket.curTickIndex] > minTimestamp then
293
for tickIndex, timestamp in pairs(bucket.tickMap) do
294
if timestamp > minTimestamp then
295
withinHistory[bucket] = tickIndex;
0 commit comments