0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

Merge pull request #4005 from ErisDS/dbhash-first-run

Fixes the first run messages
This commit is contained in:
Jason Williams 2014-09-15 08:28:06 -05:00
commit d93bf82795

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;
});
});