Skip to content
This repository was archived by the owner on Nov 20, 2021. It is now read-only.

Commit d220999

Browse files
committed
Removes "filterUpdatedMangas" due to no time being shown
1 parent 9da0bdd commit d220999

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

‎src/CatManga/CatManga.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const BASE = "https://catmanga.org"
1515

1616
export const CatMangaInfo: SourceInfo = {
1717
icon: "icon.png",
18-
version: "1.1.0",
18+
version: "1.2.0",
1919
name: "CatManga",
2020
author: "PythonCoderAS",
2121
authorWebsite: "https://github.com/PythonCoderAS",
@@ -124,8 +124,9 @@ export class CatManga extends Source {
124124
});
125125
}
126126

127-
128127
async filterUpdatedManga(mangaUpdatesFoundCallback: (updates: MangaUpdates) => void, time: Date, ids: string[]): Promise<void> {
128+
// TODO: Wait for upload times to be shown.
129+
/*
129130
const tiles: MangaTile[] = this.getLatest(await this.getHomePageData());
130131
const idsFound: string[] = [];
131132
for (let i = 0; i < tiles.length; i++) {
@@ -137,5 +138,6 @@ export class CatManga extends Source {
137138
mangaUpdatesFoundCallback(createMangaUpdates({
138139
ids: idsFound
139140
}));
141+
*/
140142
}
141143
}

0 commit comments

Comments
 (0)