Finish v1.31.03(337)

This commit is contained in:
Giuseppe Scorrano 2023-02-20 17:28:58 +01:00
commit 846393304a
2 changed files with 3 additions and 3 deletions

View File

@ -10,8 +10,8 @@ apply plugin: 'com.google.gms.google-services'
android { android {
def appVersionCode = 336 def appVersionCode = 337
def appVersionName = '1.31.2' def appVersionName = '1.31.03'
signingConfigs { signingConfigs {
release { release {

View File

@ -34,7 +34,7 @@ public class SettingsModel {
} }
public String getProtocol() { public String getProtocol() {
return protocol; return protocol == null ? "http" : protocol;
} }
public Server setProtocol(String protocol) { public Server setProtocol(String protocol) {