Skip to content

Commit b059b90

Browse files
committed
Fix Demo
• Fixes a small issue with the demo project where a debug print statement should say "setting" instead of "removing" external ID
1 parent 1dc8cfd commit b059b90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

OneSignalExample/Assets/OneSignal/Example/GameControllerExample.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ void OnGUI () {
239239

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

244244
OneSignal.SetExternalUserId(externalId);
245245
}

0 commit comments

Comments
 (0)