diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-03-12 20:29:11 +0200 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-03-12 20:29:11 +0200 |
commit | 17ff3e81d376b6792d409dcbed8e48800f8d7f7a (patch) | |
tree | a9dda0e77989232e485f2d08da9a540a576a9049 /src/gmrequest.c | |
parent | c9cfc31cfdc5fe5e64b18afb91941b5d4fc63c1c (diff) |
Added "about:about"
IssueID #200
Diffstat (limited to 'src/gmrequest.c')
-rw-r--r-- | src/gmrequest.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gmrequest.c b/src/gmrequest.c index ea0a2d80..4631640e 100644 --- a/src/gmrequest.c +++ b/src/gmrequest.c | |||
@@ -290,6 +290,9 @@ static void requestFinished_GmRequest_(iGmRequest *d, iTlsRequest *req) { | |||
290 | 290 | ||
291 | static const iBlock *aboutPageSource_(iRangecc path, iRangecc query) { | 291 | static const iBlock *aboutPageSource_(iRangecc path, iRangecc query) { |
292 | const iBlock *src = NULL; | 292 | const iBlock *src = NULL; |
293 | if (equalCase_Rangecc(path, "about")) { | ||
294 | return &blobAbout_Embedded; | ||
295 | } | ||
293 | if (equalCase_Rangecc(path, "lagrange")) { | 296 | if (equalCase_Rangecc(path, "lagrange")) { |
294 | return &blobLagrange_Embedded; | 297 | return &blobLagrange_Embedded; |
295 | } | 298 | } |