v0.2.6
Fixed
- Social signup preserves empty-string name fields from the provider --- when Google, Facebook, or Apple returns an empty first or last name, the saved user now stores it as an empty string instead of treating it as missing. Applies to both web sign-in (OAuth callback) and mobile sign-in (native ID-token). Behavior is unchanged when the provider omits the field entirely
| What the provider sends | Stored before | Stored now |
|---|---|---|
| field omitted or null | missing | missing |
| empty string | missing | empty string |
| a name | the name | the name |
If your app uses a strict equality check against a missing value to detect "no name provided," switch to a falsy check so it handles both cases consistently.