Fix a missleading string

This commit is contained in:
croneter 2019-10-05 12:04:48 +02:00
parent 21bf68e148
commit 04272a9d3f
2 changed files with 2 additions and 3 deletions

View file

@ -1164,7 +1164,7 @@ msgid "Enter your Plex Media Server's IP or URL, Examples are:"
msgstr ""
msgctxt "#39217"
msgid "Use HTTPS (SSL) connections? With Kodi 18 or later, HTTPS will likely not work!"
msgid "Use HTTPS (SSL) connections? Answer should probably be yes."
msgstr ""
msgctxt "#39218"

View file

@ -85,8 +85,7 @@ class InitialSetup(object):
if not port:
return False
url = '%s:%s' % (address, port)
# "Use HTTPS (SSL) connections? With Kodi 18 or later, HTTPS will likely
# not work!"
# "Use HTTPS (SSL) connections? Answer should probably be yes."
https = utils.yesno_dialog(utils.lang(29999), utils.lang(39217))
if https:
url = 'https://%s' % url