summaryrefslogtreecommitdiffstats
path: root/app/diagnostics.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/diagnostics.go')
-rw-r--r--app/diagnostics.go17
1 files changed, 8 insertions, 9 deletions
diff --git a/app/diagnostics.go b/app/diagnostics.go
index c74224f19..809d9ff1e 100644
--- a/app/diagnostics.go
+++ b/app/diagnostics.go
@@ -11,7 +11,6 @@ import (
"sync/atomic"
"github.com/mattermost/mattermost-server/model"
- "github.com/mattermost/mattermost-server/utils"
"github.com/segmentio/analytics-go"
)
@@ -509,17 +508,17 @@ func (a *App) trackConfig() {
}
func (a *App) trackLicense() {
- if utils.IsLicensed() {
+ if license := a.License(); license != nil {
data := map[string]interface{}{
- "customer_id": utils.License().Customer.Id,
- "license_id": utils.License().Id,
- "issued": utils.License().IssuedAt,
- "start": utils.License().StartsAt,
- "expire": utils.License().ExpiresAt,
- "users": *utils.License().Features.Users,
+ "customer_id": license.Customer.Id,
+ "license_id": license.Id,
+ "issued": license.IssuedAt,
+ "start": license.StartsAt,
+ "expire": license.ExpiresAt,
+ "users": *license.Features.Users,
}
- features := utils.License().Features.ToMap()
+ features := license.Features.ToMap()
for featureName, featureValue := range features {
data["feature_"+featureName] = featureValue
}