Skip to content

Commit

Permalink
Fixing a typo and a formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hiranya911 committed Apr 15, 2019
1 parent c552865 commit 9023282
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Unreleased

- [added] `AppOptions` now supports setting an `HttpClientFactory`, which
is useful when deploying the SDK behinh a proxy server.
is useful when deploying the SDK behind a proxy server.

# v1.3.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ public async Task GetMessagingWithClientFactory()
var app = FirebaseApp.Create(new AppOptions()
{
Credential = GoogleCredential.FromAccessToken("test-token"),
HttpClientFactory = factory, ProjectId = "test-project",
HttpClientFactory = factory,
ProjectId = "test-project",
});
FirebaseMessaging messaging = FirebaseMessaging.GetMessaging(app);
Assert.NotNull(messaging);
Expand Down

0 comments on commit 9023282

Please sign in to comment.