summaryrefslogtreecommitdiff
path: root/src/gmrequest.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-11-26 14:32:07 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-11-26 14:32:07 +0200
commit7f02b8d0c2234f36294fd14a01dc16bb6f6a1cca (patch)
tree40762a9ce505e56507cd13bd55a94ac70d8c8272 /src/gmrequest.c
parent3a4525ca99deaab73d5de83e00169a0f4de73035 (diff)
Added "about:blank"
IssueID #61
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 2ac580b6..64e168a6 100644
--- a/src/gmrequest.c
+++ b/src/gmrequest.c
@@ -263,6 +263,9 @@ static const iBlock *aboutPageSource_(iRangecc path) {
263 if (equalCase_Rangecc(path, "feeds")) { 263 if (equalCase_Rangecc(path, "feeds")) {
264 return utf8_String(entryListPage_Feeds()); 264 return utf8_String(entryListPage_Feeds());
265 } 265 }
266 if (equalCase_Rangecc(path, "blank")) {
267 return utf8_String(collectNewCStr_String("\n"));
268 }
266 return src; 269 return src;
267} 270}
268 271