Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Commit

Permalink
Errors Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
dhvitOP committed Sep 24, 2022
1 parent 15e6ca1 commit 970b7f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion routers/search/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ app.get("/", async(req, res) => {
if(!keyw) {
return res.redirect("/");
}
let resx = await axios.get(api_url +"/api/search/" + keyw + "/1");
let resx = await axios.get(api_url +"api/search/" + keyw + "/1");

if(resx.status === "404")
{
Expand Down
2 changes: 1 addition & 1 deletion views/watch.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<div class="chamoy">
<div id="loader1">
<center>
<iframe id="ifr" onload="resize(this)" allow="fullscreen" scrolling="no" src="<%- api_url %>/watch/<%- chek[0]%>/<%- chek[1] %>" width="1024" style="max-width: 100%; max-height: 100%; border:none;" height="650" ></iframe>
<iframe id="ifr" onload="resize(this)" allow="fullscreen" scrolling="no" src="<%- api_url %>watch/<%- chek[0]%>/<%- chek[1] %>" width="1024" style="max-width: 100%; max-height: 100%; border:none;" height="650" ></iframe>
</center>

<center>
Expand Down

0 comments on commit 970b7f0

Please sign in to comment.