Skip to content

Commit

Permalink
fix(sentry): add new DSN (#1438)
Browse files Browse the repository at this point in the history
* fix(sentry): add new DSN

* fix(sentry): changed DSN

Co-authored-by: Sebastian Rettig <serettig@posteo.de>
  • Loading branch information
JPSchellenberg and sr258 committed Apr 15, 2021
1 parent 287c675 commit 0228646
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/boot/Sentry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import store from '../state';
import { track } from '../state/track/actions';

Sentry.init({
dsn: 'http://1f4ae874b81a48ed8e22fe6e9d52ed1b@sentry.lumi.education/3',
dsn: 'https://1f4ae874b81a48ed8e22fe6e9d52ed1b@sentry.lumi.education/3',
release: process.env.VERSION,
environment: process.env.NODE_ENV,
beforeSend: (event: Sentry.Event, hint: Sentry.EventHint) => {
Expand Down
2 changes: 1 addition & 1 deletion server/src/boot/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default async (
if (process.env.NODE_ENV !== 'development') {
Sentry.init({
dsn:
'http://1f4ae874b81a48ed8e22fe6e9d52ed1b@sentry.lumi.education/3',
'https://1f4ae874b81a48ed8e22fe6e9d52ed1b@sentry.lumi.education/3',
release: electron.app.getVersion(),
environment: process.env.NODE_ENV,
beforeSend: async (event: Sentry.Event) => {
Expand Down

0 comments on commit 0228646

Please sign in to comment.