Skip to content

Commit

Permalink
Fix misc.
Browse files Browse the repository at this point in the history
  • Loading branch information
taeold committed Nov 23, 2024
1 parent 9a85bb2 commit f581b61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/functions/src/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export function httpsCallableFromURL<
data?: RequestData | null,
options?: HttpsCallableStreamOptions
) => {
return streamAtURL(functionsInstance, url, options || {});
return streamAtURL(functionsInstance, url, data, options || {});
};
return callable as HttpsCallable<RequestData, ResponseData, StreamData>;
}
Expand Down Expand Up @@ -278,7 +278,7 @@ async function postJSON(
async function makeAuthHeaders(
functionsInstance: FunctionsService,
options: HttpsCallableOptions
) {
): Promise<Record<string, string>> {
const headers: Record<string, string> = {};
const context = await functionsInstance.contextProvider.getContext(
options.limitedUseAppCheckTokens
Expand Down

0 comments on commit f581b61

Please sign in to comment.