Skip to content

Commit

Permalink
fix: update valid_for_secs
Browse files Browse the repository at this point in the history
  • Loading branch information
Udit-takkar committed Feb 8, 2024
1 parent 34d360a commit 551de62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/app-store/dailyvideo/lib/VideoApiAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ const DailyVideoApiAdapter = (): VideoApiAdapter => {
createInstantCalVideoRoom: (endTime: string) => createInstantMeeting(endTime),
getRecordingDownloadLink: async (recordingId: string): Promise<GetAccessLinkResponseSchema> => {
try {
const res = await fetcher(`/recordings/${recordingId}/access-link?valid_for_secs=172800`).then(
const res = await fetcher(`/recordings/${recordingId}/access-link?valid_for_secs=43200`).then(
getAccessLinkResponseSchema.parse
);
return Promise.resolve(res);
Expand Down
2 changes: 1 addition & 1 deletion packages/app-store/shimmervideo/lib/VideoApiAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ const ShimmerDailyVideoApiAdapter = (): VideoApiAdapter => {
},
getRecordingDownloadLink: async (recordingId: string): Promise<GetAccessLinkResponseSchema> => {
try {
const res = await fetcher(`/recordings/${recordingId}/access-link?valid_for_secs=172800`).then(
const res = await fetcher(`/recordings/${recordingId}/access-link?valid_for_secs=43200`).then(
getAccessLinkResponseSchema.parse
);
return Promise.resolve(res);
Expand Down

0 comments on commit 551de62

Please sign in to comment.