Skip to content

Commit

Permalink
Merge pull request #41 from mnsinri/dev
Browse files Browse the repository at this point in the history
fix: stopped dealing with stream requiring a pin
  • Loading branch information
mnsinri authored Jul 17, 2023
2 parents 0354b3c + a94fb01 commit 4c719c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/src/twitCasting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const getStreams = async (token: string, userIds: string[]) => {
);

const contents: { movie: any }[] = (await Promise.all(requests)).filter(
(v) => v
(v) => v && !v.movie.is_protected
);

return contents.map<StreamInfo>((co) => ({
Expand Down

0 comments on commit 4c719c9

Please sign in to comment.