From c6e61947013fbe06db3c8165148ef947175bf981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9luchu?= Date: Fri, 21 Aug 2020 10:23:44 +0200 Subject: [PATCH] v3.0.2 - Add MAL Link on future seasons --- README.md | 2 +- package.json | 2 +- src/api/api.js | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a57dc34..52073b6 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# **Aruppi API** (v3.0.1) +# **Aruppi API** (v3.0.2) > This API has everything about Japan, from anime, music, radio, images, videos ... to japanese culture > diff --git a/package.json b/package.json index 2a1b26e..6535905 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aruppi", - "version": "3.0.1", + "version": "3.0.2", "description": "Aruppi is a custom API to obtain data from the Japanese culture for the mobile app", "main": "./src/api/api.js", "scripts": { diff --git a/src/api/api.js b/src/api/api.js index d52f1ad..caa72c5 100644 --- a/src/api/api.js +++ b/src/api/api.js @@ -183,7 +183,8 @@ const laterSeasons = async () =>{ return data.anime.map(doc =>({ title: doc.title, - image: doc.image_url + image: doc.image_url, + malink: doc.url })); };