v1.1.1: release build with tx display fix, birthday parse fix

This commit is contained in:
2026-03-22 10:52:25 -05:00
parent e2071653b9
commit 7ec272df90
4 changed files with 7 additions and 4 deletions

View File

@@ -191,7 +191,7 @@ MainWindow::MainWindow(QWidget *parent) :
// 2. Validate birthday
QString birthday_str = restoreSeed.birthday->toPlainText();
QString birthday_str = restoreSeed.birthday->toPlainText().trimmed();
bool ok;
qint64 birthday = birthday_str.toUInt(&ok);
if (!ok) {