We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27c0ac4 commit 922cce6Copy full SHA for 922cce6
src/helper_startup.py
@@ -78,3 +78,9 @@ def loadConfig():
78
os.makedirs(shared.appdata)
79
with open(shared.appdata + 'keys.dat', 'wb') as configfile:
80
shared.config.write(configfile)
81
+
82
+ # Initialize settings that may be missing due to upgrades and could
83
+ # cause errors if missing.
84
+ if not shared.config.has_option('bitmessagesettings', 'sockslisten'):
85
+ shared.config.set('bitmessagesettings', 'sockslisten', 'false')
86
0 commit comments