You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
base href is causing invalid media links on chats
The base href that was added on this commit is causing media links on the chats to point to an incorrect location.
Here is what the base href looks like on one my generated html files:
Note that both the base href and the image have the same base prefix. This causes the web browser to duplicate the prefix, resolving it to an invalid link that looks like this:
Commenting out the base href element in whatsapp.html fixes the issue. I'm only reporting the bug rather than submitting a PR because it's unclear to me what the goal of adding that base href is, so I'm just pointing it out.
The text was updated successfully, but these errors were encountered:
base href is causing invalid media links on chats
The base href that was added on this commit is causing media links on the chats to point to an incorrect location.
Here is what the base href looks like on one my generated html files:
And here is an image link in the same html file:
Note that both the base href and the image have the same base prefix. This causes the web browser to duplicate the prefix, resolving it to an invalid link that looks like this:
Commenting out the
base href
element in whatsapp.html fixes the issue. I'm only reporting the bug rather than submitting a PR because it's unclear to me what the goal of adding thatbase href
is, so I'm just pointing it out.The text was updated successfully, but these errors were encountered: