Commit dd73b036 authored by NGPixel's avatar NGPixel

fix: git config typo

parent 35cb56c6
...@@ -54,8 +54,8 @@ module.exports = { ...@@ -54,8 +54,8 @@ module.exports = {
self.onReady = (wiki.IS_MASTER) ? self._initRepo() : Promise.resolve() self.onReady = (wiki.IS_MASTER) ? self._initRepo() : Promise.resolve()
if (wiki.config.git) { if (wiki.config.git) {
self._repo.branch = appconfig.git.branch || 'master' self._repo.branch = wiki.config.git.branch || 'master'
self._signature.email = appconfig.git.serverEmail || 'wiki@example.com' self._signature.email = wiki.config.git.serverEmail || 'wiki@example.com'
} }
return self return self
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment