Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion app/utils/localAuthentication.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,11 @@ export const localAuthenticate = async(server) => {
// if screen lock is enabled
if (serverRecord?.autoLock) {
// Make sure splash screen has been hidden
await RNBootSplash.hide();
try {
await RNBootSplash.hide();
} catch (error) {
//something went wrong
}

// Check if the app has passcode
const result = await checkHasPasscode({ serverRecord });
Expand Down