mirror of https://github.com/aruppi/aruppi-api
v2.6.2 - Fix Epidosdes List
This commit is contained in:
parent
bc9e712614
commit
25b57ce716
|
@ -1,4 +1,4 @@
|
|||
# **Aruppi API** (v2.6.1)
|
||||
# **Aruppi API** (v2.6.2)
|
||||
|
||||
> This API has everything about Japan, from anime, music, radio, images, videos ... to japanese culture
|
||||
>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "aruppi",
|
||||
"version": "2.6.1",
|
||||
"version": "2.6.2",
|
||||
"description": "Aruppi is a custom API to obtain data from the Japanese culture for the mobile app",
|
||||
"main": "./src/api/api.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -7,7 +7,7 @@ router.get('/', (req, res) => {
|
|||
res.json({
|
||||
message: 'Aruppi API - 🎏',
|
||||
author: 'Jéluchu',
|
||||
version: '2.6.1',
|
||||
version: '2.6.2',
|
||||
credits: 'The bitch loves APIs that offers data to Aruppi App',
|
||||
entries: [
|
||||
{
|
||||
|
|
|
@ -161,7 +161,7 @@ const jkanimeInfo = async (id) => {
|
|||
try{episodes_aired = eps_temp_list[0].split('-')[1].trim();}catch(err){}
|
||||
|
||||
const animeListEps = [{nextEpisodeDate: nextEpisodeDate}];
|
||||
for (let i = 0; i <= episodes_aired; i++) {
|
||||
for (let i = 1; i <= episodes_aired; i++) {
|
||||
let episode = i;
|
||||
let animeId = $('div[id="container"] div.content-box div[id="episodes-content"]')[0].children[1].children[3].attribs.src.split('/')[7].split('.jpg')[0];
|
||||
let imagePreview = $('div[id="container"] div.content-box div[id="episodes-content"]')[0].children[1].children[3].attribs.src
|
||||
|
|
Loading…
Reference in New Issue