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
Code final config = PostHogConfig(env.postHogApiKey); config.debug = env.flavor != BuildFlavor.prod; config.captureApplicationLifecycleEvents = false; config.host = env.postHogApiHost; config.sessionReplay = true; config.sessionReplayConfig.maskAllTexts = false; config.sessionReplayConfig.maskAllImages = false; config.sessionReplayConfig.throttleDelay = const Duration(milliseconds: 1000); config.flushAt = 1; await Posthog().setup(config);
I expect to see the session replay (screenshots) on the Posthog session replay recording page without encountering a blank screen.
The session replay recording page only displays a blank screen.
The text was updated successfully, but these errors were encountered:
dupe of #138
Sorry, something went wrong.
No branches or pull requests
Version
4.9.0
Steps to Reproduce
Code
final config = PostHogConfig(env.postHogApiKey);
config.debug = env.flavor != BuildFlavor.prod;
config.captureApplicationLifecycleEvents = false;
config.host = env.postHogApiHost;
config.sessionReplay = true;
config.sessionReplayConfig.maskAllTexts = false;
config.sessionReplayConfig.maskAllImages = false;
config.sessionReplayConfig.throttleDelay = const Duration(milliseconds: 1000);
config.flushAt = 1;
await Posthog().setup(config);
Expected Result
I expect to see the session replay (screenshots) on the Posthog session replay recording page without encountering a blank screen.
Actual Result
The session replay recording page only displays a blank screen.
The text was updated successfully, but these errors were encountered: