Skip to content
New issue

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

Removes corvus in favor of sentry and analytics client #3891

Merged
merged 6 commits into from Jan 16, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Next Next commit
patch: Sentry fix path
  • Loading branch information
aethernet authored and otaviojacobi committed Jan 12, 2023
commit 6c417e35a13873cd95d25f42a819de3750cdf65d
2 changes: 1 addition & 1 deletion lib/gui/app/modules/analytics.ts
Expand Up @@ -23,7 +23,7 @@ import * as packageJSON from '../../../../package.json';

const clearUserPath = (filename: string): string => {
const generatedFile = filename.split('generated').reverse()[0];
return `generated${generatedFile}`;
return generatedFile !== filename ? `generated${generatedFile}` : filename;
};

export const anonymizeData = (
Expand Down