From 2127882bde2dc407bca8cdf657afc6fe4959e5fb Mon Sep 17 00:00:00 2001 From: Andrew McKnight Date: Tue, 14 May 2024 20:26:29 -0800 Subject: [PATCH] fix: put back the missing insertion of initial frame rate --- Sources/Sentry/SentryProfileTimeseries.mm | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/Sentry/SentryProfileTimeseries.mm b/Sources/Sentry/SentryProfileTimeseries.mm index c33d6a98f9..69e1794aec 100644 --- a/Sources/Sentry/SentryProfileTimeseries.mm +++ b/Sources/Sentry/SentryProfileTimeseries.mm @@ -138,6 +138,7 @@ break; } entry[@"value"] = mostRecentFrameRate; + [slicedGPUEntries addObject:entry]; } return slicedGPUEntries; }