Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit 3617d18

Browse files
authored
Merge pull request #337 from xamarin/dh_ExceptionCatchFix
Fixed catch typo
2 parents 63397b7 + df351fc commit 3617d18

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

nuget/Xamarin.Auth.Extensions.nuspec

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
Xamarin.Auth.Extensions
99
</title>
1010
<authors>
11-
Xamarin
11+
Microsoft
1212
</authors>
1313
<owners>
14-
Xamarin
14+
Microsoft
1515
</owners>
1616
<copyright>
17-
Copyright 2013-2018
17+
© Microsoft Corporation. All rights reserved.
1818
</copyright>
1919
<!--
2020
SemVer - Semantic Versioning
@@ -36,7 +36,7 @@
3636
https://xamarin-component-icons.s3.amazonaws.com/Xamarin.Auth.png
3737
</iconUrl>
3838
<requireLicenseAcceptance>
39-
false
39+
true
4040
</requireLicenseAcceptance>
4141
<description>
4242
Non-standard Extensions (utilities) to Xamarin-Auth (refresh-token)

nuget/Xamarin.Auth.XamarinForms.nuspec

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
Xamarin.Auth.XamarinForms
1212
</title>
1313
<authors>
14-
Xamarin
14+
Microsoft
1515
</authors>
1616
<owners>
17-
Xamarin
17+
Microsoft
1818
</owners>
1919
<copyright>
20-
Copyright 2013-2018
20+
© Microsoft Corporation. All rights reserved.
2121
</copyright>
2222
<!--
2323
SemVer - Semantic Versioning
@@ -39,7 +39,7 @@
3939
https://xamarin-component-icons.s3.amazonaws.com/Xamarin.Auth.png
4040
</iconUrl>
4141
<requireLicenseAcceptance>
42-
false
42+
true
4343
</requireLicenseAcceptance>
4444
<description>
4545
A cross-platform API for authenticating users and storing their accounts.

nuget/Xamarin.Auth.nuspec

+10-10
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
<title>
1111
Xamarin.Auth
1212
</title>
13-
<authors>
14-
Xamarin
15-
</authors>
16-
<owners>
17-
Xamarin
18-
</owners>
19-
<copyright>
20-
Copyright 2013-2018
21-
</copyright>
13+
<authors>
14+
Microsoft
15+
</authors>
16+
<owners>
17+
Microsoft
18+
</owners>
19+
<copyright>
20+
© Microsoft Corporation. All rights reserved.
21+
</copyright>
2222
<!--
2323
SemVer - Semantic Versioning
2424
http://semver.org/
@@ -39,7 +39,7 @@
3939
https://xamarin-component-icons.s3.amazonaws.com/Xamarin.Auth.png
4040
</iconUrl>
4141
<requireLicenseAcceptance>
42-
false
42+
true
4343
</requireLicenseAcceptance>
4444
<description>
4545
A cross-platform API for authenticating users and storing their accounts.

source/Core/Xamarin.Auth.XamarinAndroid/AccountStore/AndroidAccountStore.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public AndroidAccountStore(Context context, string password)
112112
//try with the original password
113113
MigrateKeyStore(context, PasswordHardCodedOriginal);
114114
}
115-
catch ()
115+
catch
116116
{
117117
//migrate using the default
118118
MigrateKeyStore(context);

0 commit comments

Comments
 (0)