diff src/luan/modules/http/Http.luan @ 1371:4c5548a61d4f

add Request.originalPath
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 26 Jun 2019 19:14:13 -0600
parents 8d95711f6615
children a3d0d1c2ce89
line wrap: on
line diff
--- a/src/luan/modules/http/Http.luan	Sun Jun 23 19:50:55 2019 -0600
+++ b/src/luan/modules/http/Http.luan	Wed Jun 26 19:14:13 2019 -0600
@@ -55,6 +55,7 @@
 		this.raw_head = java.rawHead or error()
 		this.method = java.method or error()
 		this.raw_path = java.rawPath or error()
+		this.original_path = java.originalPath or error()
 		this.path = java.path or error()
 		this.protocol = java.protocol or error()
 		this.scheme = java.scheme or error()