diff src/luan/modules/http/NotFound.java @ 1358:1d31c1f3ea30

better not_found_handler
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 19 Apr 2019 00:47:58 -0600
parents 643cf1c37723
children a3d0d1c2ce89
line wrap: on
line diff
--- a/src/luan/modules/http/NotFound.java	Thu Apr 18 00:55:21 2019 -0600
+++ b/src/luan/modules/http/NotFound.java	Fri Apr 19 00:47:58 2019 -0600
@@ -13,7 +13,7 @@
 	}
 
 	@Override public Response handle(Request request) {
-		return luanHandler.handle(request,"site:/not_found.luan");
+		return luanHandler.handle(request,true);
 	}
 
 }