Skip to content

Commit

Permalink
Fix upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner authored and renovate[bot] committed Sep 10, 2024
1 parent 85550df commit 0d21c4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/controllers/AbstractAppController.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
AbstractAppController.$inject = ['$scope', '$injector', 'mobile'];
// The MIT License (MIT)
//
// Copyright (c) 2015-2024 Camptocamp SA
Expand Down Expand Up @@ -63,6 +62,7 @@ import ngeoMapFeatureOverlayMgr from 'ngeo/map/FeatureOverlayMgr';
import storeMap from 'gmfapi/store/map';
import user, {UserState, loginMessageRequired} from 'gmfapi/store/user';

AbstractAppController.$inject = ['$scope', '$injector', 'mobile'];
/**
* Application abstract controller.
*
Expand Down Expand Up @@ -659,7 +659,7 @@ export function AbstractAppController($scope, $injector, mobile) {
if ($injector.has('sentryOptions')) {
const options = $injector.get('sentryOptions');
if (options.dsn) {
options.integrations = [Integrations.browserTracingIntegration()];
options.integrations = [Sentry.browserTracingIntegration()];
const tags = options.tags || [];
delete options.tags;
Object.assign(options, {
Expand Down

0 comments on commit 0d21c4d

Please sign in to comment.