Skip to content

Commit

Permalink
fix: fixes cards not saving on other languages (#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
GameTec-live authored Feb 4, 2024
1 parent 7f3fb51 commit fab179d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chameleonultragui/lib/gui/component/card_recovery.dart
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class CardRecoveryState extends State<CardRecovery> {
? TagType.mifare1K
: mfClassicGetChameleonTagType(widget.mfcInfo.type),
data: widget.mfcInfo.recovery!.cardData,
ats: (widget.hfInfo.ats != "No")
ats: (widget.hfInfo.ats != localizations.no)
? hexToBytesSpace(widget.hfInfo.ats)
: Uint8List(0)));
appState.sharedPreferencesProvider.setCards(tags);
Expand Down

0 comments on commit fab179d

Please sign in to comment.