summaryrefslogtreecommitdiff
path: root/src/gmrequest.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-09-15 19:36:45 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-09-15 19:36:45 +0300
commita69ee841cd3d8ce3bf8341fbe6e590614a6a0609 (patch)
treeca9c7425ac2827a6ea0edb6328fcdf3d03364d11 /src/gmrequest.c
parente71a07a126a761634d7cf45fbc49a4513ca34e95 (diff)
GmDocument: Recognize "about:" links
Diffstat (limited to 'src/gmrequest.c')
-rw-r--r--src/gmrequest.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gmrequest.c b/src/gmrequest.c
index 843d2f46..96276636 100644
--- a/src/gmrequest.c
+++ b/src/gmrequest.c
@@ -305,6 +305,9 @@ static const iBlock *aboutPageSource_(iRangecc path) {
305 if (equalCase_Rangecc(path, "help")) { 305 if (equalCase_Rangecc(path, "help")) {
306 return &blobHelp_Embedded; 306 return &blobHelp_Embedded;
307 } 307 }
308 if (equalCase_Rangecc(path, "license")) {
309 return &blobLicense_Embedded;
310 }
308 if (equalCase_Rangecc(path, "version")) { 311 if (equalCase_Rangecc(path, "version")) {
309 return &blobVersion_Embedded; 312 return &blobVersion_Embedded;
310 } 313 }