|
@@ -27,9 +27,17 @@ namespace comal.timesheets
|
|
|
{
|
|
|
InitializeComponent();
|
|
|
//ShowSplashPage();
|
|
|
- CheckForLatestVersion();
|
|
|
- if (!string.IsNullOrWhiteSpace(logindetails))
|
|
|
- loadFromIOSLink = logindetails;
|
|
|
+ try
|
|
|
+ {
|
|
|
+ ShowPINPad();
|
|
|
+ CheckForLatestVersion();
|
|
|
+ if (!string.IsNullOrWhiteSpace(logindetails))
|
|
|
+ loadFromIOSLink = logindetails;
|
|
|
+ }
|
|
|
+ catch
|
|
|
+ {
|
|
|
+ ShowPINPad();
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
protected override void OnAppearing()
|
|
@@ -94,7 +102,10 @@ namespace comal.timesheets
|
|
|
});
|
|
|
});
|
|
|
}
|
|
|
- catch { }
|
|
|
+ catch
|
|
|
+ {
|
|
|
+ ShowPINPad();
|
|
|
+ }
|
|
|
base.OnAppearing();
|
|
|
}
|
|
|
|