Skip to content

Commit

Permalink
fixed number function
Browse files Browse the repository at this point in the history
  • Loading branch information
thoriqazzikraa committed Oct 30, 2023
1 parent 8cc740a commit d5a2366
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scrape-websitee",
"version": "1.0.54",
"version": "1.0.55",
"description": "Website Scraping",
"main": "index.js",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion src/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const baseFilmApik = "https://filmapik21.live/"
const cheerio = require("cheerio")
const baseSSS = "https://instasupersave.com/"
const { convertMs } = require("../function/number.js")
const num = require("../function/number.js")

async function otakuDesuSearch(query) {
const { data } = await axios.get(`${baseOtakudesu}?s=${query}&post_type=anime`)
Expand Down Expand Up @@ -149,7 +150,7 @@ async function similarSongs(songs) {
} catch (err) {
result = {
status: false,
statusCode: err.response.data.data.status,
statusCode: err.response.data.status,
code: err.response.data.code,
message: err.response.data.message
}
Expand Down

0 comments on commit d5a2366

Please sign in to comment.