We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
4.9.0
when
config.sessionReplayConfig.maskAllTexts = true; config.sessionReplayConfig.maskAllImages = true;
https://github.com/PostHog/posthog-flutter/blob/main/lib/src/replay/screenshot/screenshot_capturer.dart#L101-L103
Uint8List pngBytes = byteData.buffer.asUint8List(); image.dispose(); // <-----
image dispose but it still used in
if (screenElementsRects != null) { final ui.Image maskedImage = await _imageMaskPainter.drawMaskedImage( image, screenElementsRects, pixelRatio); final imageInfo = ImageInfo( maskedImage, viewId, globalPosition.dx.toInt(), globalPosition.dy.toInt(), srcWidth.toInt(), srcHeight.toInt(), shouldSendMetaEvent, pngBytes); _updateStatusView(shouldSendMetaEvent, renderObject, statusView); return imageInfo; }
replay masking in dashboard
black replay in dashboard or broken replay in dashboard
The text was updated successfully, but these errors were encountered:
I'll send a pr fix for this now
Sorry, something went wrong.
No branches or pull requests
Version
4.9.0
Steps to Reproduce
when
https://github.com/PostHog/posthog-flutter/blob/main/lib/src/replay/screenshot/screenshot_capturer.dart#L101-L103
image dispose but it still used in
Expected Result
replay masking in dashboard
Actual Result
black replay in dashboard or broken replay in dashboard
The text was updated successfully, but these errors were encountered: