diff options
author | Cameron Youell <cameronyouell@gmail.com> | 2023-01-19 01:44:25 +1100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-01-18 14:46:13 +0000 |
commit | ce1b7e63c940f9eca4c013134a135a8a54cd177f (patch) | |
tree | 73dfa446c7edcbac84e22c5451e207387f949e9c /Base | |
parent | 537fcaf59ee05f8dbdf22716a4b3c5879a6ef25e (diff) | |
download | serenity-ce1b7e63c940f9eca4c013134a135a8a54cd177f.zip |
LibWeb: Fix error page icon outside of serenity
Diffstat (limited to 'Base')
-rw-r--r-- | Base/res/html/error.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Base/res/html/error.html b/Base/res/html/error.html index c9d254c81d..c7fb60897f 100644 --- a/Base/res/html/error.html +++ b/Base/res/html/error.html @@ -13,7 +13,7 @@ </head> <body> <header> - <img src="file:///res/icons/32x32/msgbox-warning.png" alt="Warning" width="24" height="24"> + <img src="../icons/32x32/msgbox-warning.png" alt="Warning" width="24" height="24"> <h1>Failed to load @failed_url@</h1> </header> <p>Error: @error@</p> |