0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Fixes the first run messages

no issue

- Whilst testing the mail PR #3915 I noticed the first run messages aren't
  appearing because the dbHash is getting pre-populated, but there doesn't
  appear to be a reason why this is necessary
This commit is contained in:
Hannah Wolfe 2014-09-10 14:27:25 +01:00
parent 7ab340f777
commit b890f31d98

View file

@ -21,11 +21,6 @@ function parseDefaultSettings() {
setting.type = categoryName;
setting.key = settingName;
// Special case for dbHash
if (setting.key === 'dbHash' && setting.defaultValue === null) {
setting.defaultValue = uuid.v4();
}
defaultSettingsFlattened[settingName] = setting;
});
});