From a69ee841cd3d8ce3bf8341fbe6e590614a6a0609 Mon Sep 17 00:00:00 2001 From: Jaakko Keränen Date: Tue, 15 Sep 2020 19:36:45 +0300 Subject: GmDocument: Recognize "about:" links --- src/gmrequest.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/gmrequest.c') 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) { if (equalCase_Rangecc(path, "help")) { return &blobHelp_Embedded; } + if (equalCase_Rangecc(path, "license")) { + return &blobLicense_Embedded; + } if (equalCase_Rangecc(path, "version")) { return &blobVersion_Embedded; } -- cgit v1.2.3