Skip to content

Commit 5a95e11

Browse files
author
Jonathan Warren
committed
Merge pull request #319 from DivineOmega/fix_double_chan
Fixes double [chan] appearing when adding chan to address book
2 parents 8a0d093 + b488bb5 commit 5a95e11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bitmessageqt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1090,7 +1090,7 @@ def click_actionJoinChan(self):
10901090
"MainWindow", "Could not add chan because it appears to already be one of your identities."))
10911091
return
10921092
createdAddress = addressGeneratorReturnValue[0]
1093-
self.addEntryToAddressBook(createdAddress, self.str_chan + ' ' + self.str_chan + ' ' + str(self.newChanDialogInstance.ui.lineEditChanNameJoin.text()))
1093+
self.addEntryToAddressBook(createdAddress, self.str_chan + ' ' + str(self.newChanDialogInstance.ui.lineEditChanNameJoin.text()))
10941094
QMessageBox.about(self, _translate("MainWindow", "Success"), _translate(
10951095
"MainWindow", "Successfully joined chan. "))
10961096
self.ui.tabWidget.setCurrentIndex(3)

0 commit comments

Comments
 (0)