ngx-segment-analytics
ngx-segment-analytics copied to clipboard
Unused `cdnUrl` variable in SegmentService
This code contains an unused variable (cdnUrl
) and this may be a bug:
if (this._config.loadOnInitialization && !SegmentService._segmentInstance.instance?.initialized) {
if (this._config.segmentHost) {
// Deprecated option
const cdnUrl = 'https://' + this._config.segmentHost;
} else {
const cdnUrl = this._config.cdnURL;
}
this.load({writeKey: this._config.apiKey, cdnURL: this._config.segmentHost});
}