Removed unnecessary return with typo

refs: https://github.com/TryGhost/Ghost/pull/12735

- this property doesn't exist - it should be this.resourcesConfig
- but we don't use the return value, so simply removed it
This commit is contained in:
Hannah Wolfe 2021-06-23 14:12:28 +01:00
parent f12f64e87b
commit c12edf4bbd
No known key found for this signature in database
GPG Key ID: 9F8C7532D0A6BA55

View File

@ -49,7 +49,7 @@ class Resources {
*/
_initResourceConfig() {
if (!_.isEmpty(this.resourcesConfig)) {
return this.resourceConfig;
return;
}
const bridge = require('../../../bridge');