Closed
Description
Describe your environment
- Xcode version: 10.2.1
- Firebase SDK version: 6.3.0
- Firebase Component: Analytics
- Component version: 6.3.0
Describe the problem
When setting a user property value to nil
with Analytics.setUserProperty
I'm expecting it to be removed on Firebase as the documentation says:
The value of the user property. Values can be up to 36 characters long. Setting the value to nil removes the user property.
Steps to reproduce:
- Send a user property on firebase analytics like this
Analytics.setUserProperty(<property>, forName: <name>)
. - Go to the debug view in the firebase console and check that property is set
- Call
Analytics.setUserProperty(nil, forName: <name>)
- Go back to the debug view
The property is still here in the debug view but I'm expecting it to be gone. This is quite annoying since we can only set 25 properties but we can't remove any.