mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
Fixed config variable in UpdateCheck
refs 2e7d0a4e26
- the referenced commit pushed some refactors to the service but
`this.config` should have just been `config`
- Ghost was 500ing so this commit fixes the incorrect variable
This commit is contained in:
parent
666baf8d50
commit
4edb8f40d6
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ module.exports = () => {
|
|||
databaseType: config.get('database').client,
|
||||
checkEndpoint: config.get('updateCheck:url'),
|
||||
isPrivacyDisabled: config.isPrivacyDisabled('useUpdateCheck'),
|
||||
notificationGroups: this.config.get('notificationGroups'),
|
||||
notificationGroups: config.get('notificationGroups'),
|
||||
siteUrl: urlUtils.urlFor('home', true),
|
||||
forceUpdate: config.get('updateCheck:forceUpdate'),
|
||||
ghostVersion: ghostVersion.original
|
||||
|
|
Loading…
Reference in a new issue