Skip to content

Commit

Permalink
Update URL handling in request data to use mapped URL
Browse files Browse the repository at this point in the history
  • Loading branch information
trheyi committed Dec 3, 2024
1 parent d4f5a43 commit 68a97a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sui/core/request.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func (r *Request) NewData() Data {
data["$query"] = r.Query
data["$param"] = r.Params
data["$cookie"] = cookies
data["$url"] = r.URL
data["$url"] = r.URL.Map()
data["$theme"] = r.Theme
data["$locale"] = r.Locale
data["$timezone"] = GetSystemTimezone()
Expand Down

0 comments on commit 68a97a4

Please sign in to comment.