Copione merged onto master
continuous-integration/drone/push Build is passing Details

master
blallo 2020-03-20 00:00:31 +00:00
commit e0a0bae913
2 changed files with 3 additions and 5 deletions

View File

@ -80,8 +80,8 @@ protobuf {
}
}
def canonicalVersionCode = 612
def canonicalVersionName = "4.57.1"
def canonicalVersionCode = 613
def canonicalVersionName = "4.57.2"
def postFixSize = 10
def abiPostFix = ['universal' : 0,

View File

@ -1,7 +1,5 @@
package org.thoughtcrime.securesms.lock.v2;
import org.thoughtcrime.securesms.keyvalue.SignalStore;
public final class KbsConstants {
public static final int MINIMUM_PIN_LENGTH = 6;
@ -10,6 +8,6 @@ public final class KbsConstants {
private KbsConstants() { }
public static int minimumPossiblePinLength() {
return SignalStore.kbsValues().hasMigratedToPinsForAll() ? MINIMUM_PIN_LENGTH : LEGACY_MINIMUM_PIN_LENGTH;
return LEGACY_MINIMUM_PIN_LENGTH;
}
}