Skip to content

Commit

Permalink
refactor: simplify URL construction by removing fullUrl host part
Browse files Browse the repository at this point in the history
  • Loading branch information
sikatikenmogne committed Aug 27, 2024
1 parent 7610ee6 commit 8394157
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const handleContributors = async (req: Request, res: Response) => {

records = getRecordsMatchingQuery(query ?? "", records);
const { count, items, interval } = paginate(records, parseInt(page ?? "1"));
const fullUrl = req.protocol + '://' + req.get('host') + req.originalUrl;
const fullUrl = req.originalUrl;

res.render("index", {
fullUrl,
Expand Down Expand Up @@ -96,7 +96,7 @@ app.get("/shop", async (req, res) => {
const query = req.query.query || "";
const page = req.query.page as string | undefined ;
const { count, items, interval } = paginate(shopItems,parseInt(page ?? "1") || 1);
const fullUrl = req.protocol + '://' + req.get('host') + req.originalUrl;
const fullUrl = req.originalUrl;

res.render("index", {
fullUrl,
Expand All @@ -113,7 +113,7 @@ app.get("/shop", async (req, res) => {
});

app.get("/issues", async (req: Request, res: Response) => {
const fullUrl = req.protocol + '://' + req.get('host') + req.originalUrl;
const fullUrl = req.originalUrl;
const issues: Issue[] = await getIssues();
const query = req.query.query || "";
const page = req.query.page as string | undefined ;
Expand Down

0 comments on commit 8394157

Please sign in to comment.