Fix conflicts and update linux version

This commit is contained in:
OmarHatem 2024-03-29 22:53:39 +02:00
parent 59cf9d0acf
commit f92c09a28c
2 changed files with 3 additions and 3 deletions

View file

@ -66,7 +66,7 @@ class AuthService with Store {
Future<bool> authenticate(String pin) async {
final key = generateStoreKeyFor(key: SecretStoreKey.pinCodePassword);
final encodedPin = await readSecureStorage(secureStorage, key);
final encodedPin = await secureStorage.read(secureStorage, key);
final decodedPin = decodedPinCode(pin: encodedPin!);
return decodedPin == pin;

View file

@ -14,8 +14,8 @@ if [ -n "$1" ]; then
fi
CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="1.6.2"
CAKEWALLET_BUILD_NUMBER=20
CAKEWALLET_VERSION="1.6.3"
CAKEWALLET_BUILD_NUMBER=21
if ! [[ " ${TYPES[*]} " =~ " ${APP_LINUX_TYPE} " ]]; then
echo "Wrong app type."