File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Unreleased
2
+ - [ fixed] Fixed an issue that may have prevented the client from connecting
3
+ to the backend immediately after a user signed in.
2
4
3
5
# v1.15.0
4
6
- [ changed] Internal improvements for future C++ and Unity support. Includes a
Original file line number Diff line number Diff line change 24
24
25
25
#include " Firestore/core/src/util/error_apple.h"
26
26
#include " Firestore/core/src/util/hard_assert.h"
27
+ #include " Firestore/core/src/util/log.h"
27
28
#include " Firestore/core/src/util/string_apple.h"
28
29
29
30
namespace firebase {
97
98
// Cancel the request since the user changed while the request was
98
99
// outstanding so the response is likely for a previous user (which
99
100
// user, we can't be sure).
100
- completion ( util::Status (Error:: kErrorAborted ,
101
- " GetToken aborted due to token change. " ) );
101
+ LOG_DEBUG ( " GetToken aborted due to token change. " );
102
+ return GetToken (completion );
102
103
} else {
103
104
if (error == nil ) {
104
105
if (token != nil ) {
You can’t perform that action at this time.
0 commit comments