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:
parent
daec858165
commit
1a370a3708
1 changed files with 1 additions and 1 deletions
|
@ -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');
|
||||
|
|
Loading…
Reference in a new issue