Skip to content

Commit 86339a2

Browse files
committed
Fix Dynamic Links on Android not passing a future handle correctly
PiperOrigin-RevId: 313686919
1 parent 35481e2 commit 86339a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dynamic_links/src/dynamic_links_android.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -961,7 +961,7 @@ static Future<GeneratedDynamicLink> HandleShortLinkTask(
961961
} else {
962962
util::RegisterCallbackOnTask(
963963
jni_env, task, FutureShortLinkCallback,
964-
*(reinterpret_cast<void* const*>(handle.get().id())), kApiIdentifier);
964+
reinterpret_cast<void*>(handle.get().id()), kApiIdentifier);
965965
}
966966

967967
jni_env->DeleteLocalRef(link_builder);

0 commit comments

Comments
 (0)