Feature - Google Analytics - Removed regex to validate a Google Analytics tag.

This commit is contained in:
c 2023-01-31 13:18:02 +00:00
parent 3afe8013ca
commit 913bb611d5
2 changed files with 1 additions and 14 deletions

View file

@ -164,7 +164,7 @@ module.exports.statusPageSocketHandler = (socket) => {
statusPage.custom_css = config.customCSS;
statusPage.show_powered_by = config.showPoweredBy;
statusPage.modified_date = R.isoDateTime();
statusPage.google_analytics_tag_id = googleAnalytics.isValidTag(config.googleAnalyticsId) ? config.googleAnalyticsId : "";
statusPage.google_analytics_tag_id = config.googleAnalyticsId;
await R.store(statusPage);