about summary refs log tree commit diff
path: root/modules/expo-bluesky-swiss-army/src/HLSDownload/index.tsx
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-08-15 16:29:16 -0700
committerGitHub <noreply@github.com>2024-08-15 16:29:16 -0700
commita5af24b53b6085cfb5547592c29155bc10e71f9e (patch)
tree6946c933322c1cdfc455e63c02ca74b18651117b /modules/expo-bluesky-swiss-army/src/HLSDownload/index.tsx
parentb6e515c664d51ffe357c3562fd514301805ade8c (diff)
downloadvoidsky-a5af24b53b6085cfb5547592c29155bc10e71f9e.tar.zst
Revert "[Video] Download videos" (#4945)
Diffstat (limited to 'modules/expo-bluesky-swiss-army/src/HLSDownload/index.tsx')
-rw-r--r--modules/expo-bluesky-swiss-army/src/HLSDownload/index.tsx22
1 files changed, 0 insertions, 22 deletions
diff --git a/modules/expo-bluesky-swiss-army/src/HLSDownload/index.tsx b/modules/expo-bluesky-swiss-army/src/HLSDownload/index.tsx
deleted file mode 100644
index 93c50497f..000000000
--- a/modules/expo-bluesky-swiss-army/src/HLSDownload/index.tsx
+++ /dev/null
@@ -1,22 +0,0 @@
-import React from 'react'
-
-import {NotImplementedError} from '../NotImplemented'
-import {HLSDownloadViewProps} from './types'
-
-export default class HLSDownloadView extends React.PureComponent<HLSDownloadViewProps> {
-  constructor(props: HLSDownloadViewProps) {
-    super(props)
-  }
-
-  static isAvailable(): boolean {
-    return false
-  }
-
-  async startDownloadAsync(sourceUrl: string): Promise<void> {
-    throw new NotImplementedError({sourceUrl})
-  }
-
-  render() {
-    return null
-  }
-}