Skip to content

Commit 8fcb3be

Browse files
authored
Removed duplicate curly brace (#136)
* Removed duplicate curly brace * Update FirebaseAuthProvider.cs * Merged with master, upped nuget version
1 parent f776c9f commit 8fcb3be

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Firebase.Auth/Firebase.Auth.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard1.1</TargetFramework>
55
<PackageId>FirebaseAuthentication.net</PackageId>
6-
<PackageVersion>3.5.0</PackageVersion>
6+
<PackageVersion>3.6.0</PackageVersion>
77
<Authors>Step Up Labs, Inc.</Authors>
88
<Description>Firebase authentication library. It can generate Firebase auth token based on given OAuth token (issued by Google, Facebook...). This Firebase token can then be used with REST queries against Firebase endpoints. </Description>
99
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>

src/Firebase.Auth/FirebaseAuthProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,10 +165,10 @@ public async Task<FirebaseAuthLink> SignInWithEmailAndPasswordAsync(string email
165165

166166
if (tenantId != null)
167167
{
168-
sb.Append($"\"tenantId\":\"{tenantId}\"");
168+
sb.Append($"\"tenantId\":\"{tenantId}\",");
169169
}
170170

171-
sb.Append("\"returnSecureToken\":true}}");
171+
sb.Append("\"returnSecureToken\":true}");
172172

173173
FirebaseAuthLink firebaseAuthLink = await this.ExecuteWithPostContentAsync(GooglePasswordUrl, sb.ToString()).ConfigureAwait(false);
174174
firebaseAuthLink.User = await this.GetUserAsync(firebaseAuthLink.FirebaseToken).ConfigureAwait(false);

0 commit comments

Comments
 (0)