File tree 1 file changed +1
-3
lines changed
src/components/VideoPlayerContexts
1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import type {PopoverMenuItem} from '@components/PopoverMenu';
4
4
import type { VideoWithOnFullScreenUpdate } from '@components/VideoPlayer/types' ;
5
5
import useLocalize from '@hooks/useLocalize' ;
6
6
import useNetwork from '@hooks/useNetwork' ;
7
- import addEncryptedAuthTokenToURL from '@libs/addEncryptedAuthTokenToURL' ;
8
7
import fileDownload from '@libs/fileDownload' ;
9
8
import CONST from '@src/CONST' ;
10
9
import type ChildrenProps from '@src/types/utils/ChildrenProps' ;
@@ -37,8 +36,7 @@ function VideoPopoverMenuContextProvider({children}: ChildrenProps) {
37
36
if ( typeof source === 'number' || ! source ) {
38
37
return ;
39
38
}
40
- const sourceURI = addEncryptedAuthTokenToURL ( source . uri ) ;
41
- fileDownload ( sourceURI ) ;
39
+ fileDownload ( source . uri ) ;
42
40
} , [ videoPopoverMenuPlayerRef ] ) ;
43
41
44
42
const menuItems = useMemo ( ( ) => {
You can’t perform that action at this time.
0 commit comments