summaryrefslogtreecommitdiff
path: root/content/fetch.c
diff options
context:
space:
mode:
Diffstat (limited to 'content/fetch.c')
-rw-r--r--content/fetch.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/content/fetch.c b/content/fetch.c
index a90568b1b..b07964861 100644
--- a/content/fetch.c
+++ b/content/fetch.c
@@ -38,9 +38,9 @@
#include "utils/config.h"
#include "content/fetch.h"
-#include "content/fetchers/fetch_curl.h"
-#include "content/fetchers/fetch_data.h"
-#include "content/fetchers/fetch_file.h"
+#include "content/fetchers/curl.h"
+#include "content/fetchers/data.h"
+#include "content/fetchers/file.h"
#include "content/urldb.h"
#include "desktop/netsurf.h"
#include "desktop/options.h"
@@ -111,6 +111,7 @@ void fetch_init(void)
fetch_curl_register();
fetch_data_register();
fetch_file_register();
+ fetch_about_register();
fetch_active = false;
}