Skip to content

Commit

Permalink
FIX : OmegaScans - remove timestamp in manga id (#5901)
Browse files Browse the repository at this point in the history
this fix getting chapters
Fixes #5900
  • Loading branch information
MikeZeDev authored and Sheepux committed Jan 2, 2024
1 parent c856474 commit b1bcdd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/mjs/connectors/OmegaScans.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default class OmegaScans extends Connector {
data = await data.json();
return data.data.map(element => {
return{
id: element.series_slug,
id: element.series_slug.replace(/-\d+$/, ''),
title : element.title.trim()
};
});
Expand Down

0 comments on commit b1bcdd4

Please sign in to comment.