- removed defunct config option

* changed bootstrap node
* improved web interface styles
* start-daemon script hopefully less prone to crash
* fixed openwebinterface url output
* added defaults for timer configs incase config can't be read or the values are missing
This commit is contained in:
Kevin Froman 2019-06-16 15:56:22 -05:00
parent 71805811cf
commit 3825d3857c
9 changed files with 19 additions and 12 deletions

View file

@ -26,5 +26,5 @@ def open_home(o_inst):
logger.error('Onionr seems to not be running (could not get api host)')
else:
url = 'http://%s/#%s' % (url, o_inst.onionrCore.config.get('client.webpassword'))
logger.info('If Onionr does not open automatically, use this URL:', url)
logger.info('If Onionr does not open automatically, use this URL: ' + url)
webbrowser.open_new_tab(url)