[sailfish] only proxy images when using ignore ssl, since it works (in the simulator) for proper certs, regards #70
This commit is contained in:
parent
94aca25603
commit
354b4ad2d9
1 changed files with 1 additions and 1 deletions
|
|
@ -153,7 +153,7 @@ Page {
|
|||
ttrss.clearState();
|
||||
ttrss.setLoginDetails(username.text, password.text, server.text);
|
||||
// BUGFIX since somehow the silica QML Image can not display images coming from a secure line
|
||||
if (server.text.substring(0, 5) === "https")
|
||||
if (settings.ignoreSSLErrors && server.text.substring(0, 5) === "https")
|
||||
ttrss.setProxy("http://proxy.cnlpete.de/proxy.php?url=")
|
||||
if (settings.httpauthusername != '' && settings.httpauthpassword != '') {
|
||||
ttrss.setHttpAuthInfo(settings.httpauthusername, settings.httpauthpassword);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue