Show the website mode URL description in website mode, instead of the share mode one

This commit is contained in:
Micah Lee 2019-09-22 15:35:14 -07:00
parent 01534a643b
commit 9e7a91aed2
No known key found for this signature in database
GPG key ID: 403C2657CD994F73

View file

@ -209,7 +209,7 @@ class ServerStatus(QtWidgets.QWidget):
if self.mode == ServerStatus.MODE_SHARE:
self.url_description.setText(strings._('gui_share_url_description').format(info_image))
elif self.mode == ServerStatus.MODE_WEBSITE:
self.url_description.setText(strings._('gui_share_url_description').format(info_image))
self.url_description.setText(strings._('gui_website_url_description').format(info_image))
else:
self.url_description.setText(strings._('gui_receive_url_description').format(info_image))