MakeSchool-Tutorials / Makestagram-Swift-V3

14 stars 7 forks source link

29. Intro to Analytics #84

Closed scottpchow23 closed 7 years ago

scottpchow23 commented 7 years ago

If you attempt to create an event with spaces, you'll get the following error:

Makestagram[8507] <Error> [Firebase/Analytics][I-ACS013002] Event name must contain only letters, numbers, or underscores: Created Post

Suggested fix: use underscore instead of spaces.

"Created Post" -> "Created_Post" "Poster ID" -> "Poster_ID"

ocwang commented 7 years ago

Oops! That's correct. The standard should be snake case. (i.e. created_post, poster_id)

Thanks for catching this, I'll get this fixed!