diff --git a/README.md b/README.md index 2f42bfa5..28cfd66c 100644 --- a/README.md +++ b/README.md @@ -39,13 +39,16 @@ Check out [this project's issues](https://github.com/JamesHawkinss/movie-web/iss - [x] Add results list end - [ ] Add Brand tag top left - [ ] Add github and discord top right +- [ ] Link Github and Discord in error boundary - [x] Store watched percentage - [ ] Implement movie + series view - [ ] Add provider stream method - [x] Better looking error boundary -- [ ] sort search results so they aren't sorted by provider +- [x] sort search results so they aren't sorted by provider - [ ] Get rid of react warnings -- [ ] Link Github and Discord in error boundary +- [ ] Subtitles +- [ ] Migrate old video progress +- [ ] Implement more scrapers ## Todo's overall diff --git a/src/providers/list/temp/index.ts b/src/providers/list/temp/index.ts index 99d26c86..bef0323c 100644 --- a/src/providers/list/temp/index.ts +++ b/src/providers/list/temp/index.ts @@ -24,8 +24,7 @@ export const tempScraper: MWMediaProvider = { }, async searchForMedia(query: MWQuery): Promise { - return [ - ]; + return []; }, async getStream(media: MWPortableMedia): Promise { diff --git a/src/providers/wrapper.ts b/src/providers/wrapper.ts index d6ad1dc0..54f25885 100644 --- a/src/providers/wrapper.ts +++ b/src/providers/wrapper.ts @@ -1,4 +1,10 @@ -import { MWMedia, MWMediaProvider, MWMediaStream, MWPortableMedia, MWQuery } from "./types"; +import { + MWMedia, + MWMediaProvider, + MWMediaStream, + MWPortableMedia, + MWQuery, +} from "./types"; export interface MWWrappedMediaProvider extends MWMediaProvider { getMediaFromPortable(media: MWPortableMedia): Promise;