Skip to content

Commit a1eb643

Browse files
committed
1 parent 6a4d3d5 commit a1eb643

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

Changes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to `lua-resty-reqargs` will be documented in this file.
44

5+
## [1.4] - 2015-01-07
6+
### Fixed
7+
- Fixed issue with not options passed as reported here:
8+
https://groups.google.com/forum/#!topic/openresty-en/uXRXC0NbfbI
9+
510
## [1.3] - 2016-09-29
611
### Added
712
- Support for the official OpenResty package manager (opm).

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015 - 2016, Aapo Talvensaari
1+
Copyright (c) 2015 - 2017, Aapo Talvensaari
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ The changes of every release of this module is recorded in [Changes.md](https://
122122
`lua-resty-reqargs` uses two clause BSD license.
123123

124124
```
125-
Copyright (c) 2015 - 2016, Aapo Talvensaari
125+
Copyright (c) 2015 - 2017, Aapo Talvensaari
126126
All rights reserved.
127127
128128
Redistribution and use in source and binary forms, with or without modification,

lib/resty/reqargs.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ local function parse(s)
7777
end
7878

7979
return function(options)
80+
options = options or {}
8081
local get = uargs(options.max_get_args or defaults.max_get_args)
8182
local post = {}
8283
local files = {}

0 commit comments

Comments
 (0)