Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit 2bc98da

Browse files
committed
create a password if not found, not an infinite loop #305
1 parent 02d3944 commit 2bc98da

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

native/macos/Blockstack/Blockstack/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
367367
NSLog("Blockstack Core wallet password not found in keychain: \(SecCopyErrorMessageString(status, nil))")
368368
SecKeychainItemFreeContent(nil, passwordData) // free memory
369369

370-
return createOrRetrieveCoreWalletPassword()
370+
return createAndStorePasswordInKeychain()
371371
}
372372
}
373373

native/macos/Blockstack/Blockstack/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>0.4.0</string>
20+
<string>0.4.1</string>
2121
<key>CFBundleURLTypes</key>
2222
<array>
2323
<dict>
@@ -30,7 +30,7 @@
3030
</dict>
3131
</array>
3232
<key>CFBundleVersion</key>
33-
<string>20</string>
33+
<string>21</string>
3434
<key>LSApplicationCategoryType</key>
3535
<string>public.app-category.utilities</string>
3636
<key>LSMinimumSystemVersion</key>

0 commit comments

Comments
 (0)