Skip to content

Commit

Permalink
Fix crash on broker save due to missing ClientID input (jziolkowski#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
jziolkowski committed Oct 4, 2019
1 parent 53ae442 commit 34bac8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GUI/Broker.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def accept(self):
self.settings.setValue("username", self.username.text())
self.settings.setValue("password", self.password.text())
self.settings.setValue("connect_on_startup", self.cbConnectStartup.isChecked())
self.settings.setValue("client_id", self.clientId.text())
# self.settings.setValue("client_id", self.clientId.text())
self.settings.sync()
self.done(QDialog.Accepted)

Expand Down

0 comments on commit 34bac8f

Please sign in to comment.