Skip to content

Commit 8cd2a34

Browse files
committed
[APN] Fixed missing parse_utf8 scons build error.
1 parent 6f09772 commit 8cd2a34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/apn/godot_apn_delegate.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ - (void)application:(UIApplication *)application didRegisterForRemoteNotificatio
9494
}
9595

9696
String device_token;
97-
device_token.parse_utf8([[token copy] UTF8String]);
97+
device_token.append_utf8([[token copy] UTF8String]);
9898

9999
APNPlugin::get_singleton()->update_device_token(device_token);
100100
}

0 commit comments

Comments
 (0)