0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Fixed path to analytics-events in boot file

refs 0b79abf5b2

- in the referenced commit, we refactored the boot code to simplify it
- one of the required files was not updated with the change, so the path
  was wrong
- this wouldn't have been easily visible from local testing because it's
  based upon a config flag that isn't on by default
- this commit updates the path to the file
This commit is contained in:
Daniel Lockyer 2021-02-09 12:40:52 +00:00
parent daec858165
commit 1a370a3708
No known key found for this signature in database
GPG key ID: FFBC6FA2A6F6ABC1

View file

@ -94,7 +94,7 @@ const initServices = async ({config}) => {
// Initialise analytics events
if (config.get('segment:key')) {
require('./analytics-events').init();
require('./server/analytics-events').init();
}
debug('End: initialiseServices');