File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to ` lua-resty-reqargs ` will be documented in this file.
4
4
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
+
5
10
## [ 1.3] - 2016-09-29
6
11
### Added
7
12
- Support for the official OpenResty package manager (opm).
Original file line number Diff line number Diff line change 1
- Copyright (c) 2015 - 2016 , Aapo Talvensaari
1
+ Copyright (c) 2015 - 2017 , Aapo Talvensaari
2
2
All rights reserved.
3
3
4
4
Redistribution and use in source and binary forms, with or without
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ The changes of every release of this module is recorded in [Changes.md](https://
122
122
` lua-resty-reqargs ` uses two clause BSD license.
123
123
124
124
```
125
- Copyright (c) 2015 - 2016 , Aapo Talvensaari
125
+ Copyright (c) 2015 - 2017 , Aapo Talvensaari
126
126
All rights reserved.
127
127
128
128
Redistribution and use in source and binary forms, with or without modification,
Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ local function parse(s)
77
77
end
78
78
79
79
return function (options )
80
+ options = options or {}
80
81
local get = uargs (options .max_get_args or defaults .max_get_args )
81
82
local post = {}
82
83
local files = {}
You can’t perform that action at this time.
0 commit comments