Skip to content

Commit

Permalink
Fix Demo
Browse files Browse the repository at this point in the history
• Fixes a small issue with the demo project where a debug print statement should say "setting" instead of "removing" external ID
  • Loading branch information
Nightsd01 committed Dec 10, 2018
1 parent 1dc8cfd commit b059b90
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ void OnGUI () {

if (GUI.Button(new Rect(itemOriginX, itemStartY + (count * itemHeightOffset), itemWidth, itemHeight), "SetExternalId", customTextSize))
{
extraMessage = "Removing External User Id";
extraMessage = "Setting External User Id";

OneSignal.SetExternalUserId(externalId);
}
Expand Down

0 comments on commit b059b90

Please sign in to comment.