aboutsummaryrefslogtreecommitdiff
path: root/src/main.js
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2018-09-17 19:16:33 +0300
committerHenry Jameson <me@hjkos.com>2018-09-17 19:16:58 +0300
commit419744080ff2dfcf4b860f01692463b78f30c40a (patch)
treebae4b8ed0eae44f86d2c52d389c7f0b2560a33d5 /src/main.js
parent03f28d3fa6b57d97cfd4933f4f0f232201075f92 (diff)
console.log cleanup
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main.js b/src/main.js
index 31607f0d..367db881 100644
--- a/src/main.js
+++ b/src/main.js
@@ -80,7 +80,6 @@ window.fetch('/api/statusnet/config.json')
.then((data) => {
const {name, closed: registrationClosed, textlimit, server} = data.site
- console.log(store)
store.dispatch('setInstanceOption', { name: 'name', value: name })
store.dispatch('setInstanceOption', { name: 'registrationOpen', value: (registrationClosed === '0') })
store.dispatch('setInstanceOption', { name: 'textlimit', value: parseInt(textlimit) })
@@ -92,7 +91,6 @@ window.fetch('/api/statusnet/config.json')
.then((res) => res.json())
.catch((err) => {
console.warn('Failed to load static/config.json, continuing without it.')
- console.warn('Error was: ')
console.warn(err)
return {}
})