- Removed comment - Moved SSLSettings to its own top-level class - Fixed picasso not setting SSL settings and failing to load images over self-signed connection
12 lines
245 B
Java
12 lines
245 B
Java
package com.github.gotify;
|
|
|
|
public class SSLSettings {
|
|
public boolean validateSSL;
|
|
public String cert;
|
|
|
|
public SSLSettings(boolean validateSSL, String cert) {
|
|
this.validateSSL = validateSSL;
|
|
this.cert = cert;
|
|
}
|
|
}
|