seanmturley / natureddit

A simple Reddit client, featuring a landing page dedicated to nature with posts pulled from a curated list of subreddits.
0 stars 1 forks source link

Post links to subreddits in modal view don't work on search and subreddit pages #106

Closed seanmturley closed 1 year ago

seanmturley commented 1 year ago

Description

When a post is in modal view, clicking on the "r/[subreddit]" link generates a 404. This appears to be because the links are relative to the current location, this producing strange URL paths e.g.:

seanmturley commented 1 year ago

The links were relative, stepping back one route in the path heirarchy i.e. "../r/[subreddit]/hot".

Simply changing this to an absolute path "/r/[subreddit]/hot" solved the problem.