diff options
author | Dmitry Volyntsev <xeioex@nginx.com> | 2025-02-03 09:07:22 -0800 |
---|---|---|
committer | Dmitry Volyntsev <xeioexception@gmail.com> | 2025-02-07 18:14:25 -0800 |
commit | 246f4ca082f125fd1fd20ddc7cb45e40f19de04d (patch) | |
tree | 958a51687ac51d0ffda528cc17edc6f253138dae /nginx/ngx_stream_js_module.c | |
parent | a5e4a75604135149c6e9d616378372c664033dc9 (diff) | |
download | njs-246f4ca082f125fd1fd20ddc7cb45e40f19de04d.tar.gz njs-246f4ca082f125fd1fd20ddc7cb45e40f19de04d.zip |
QuickJS: fixed shared dict in stream module.
The change was missed in 352c2e59 (0.8.8).
Diffstat (limited to 'nginx/ngx_stream_js_module.c')
-rw-r--r-- | nginx/ngx_stream_js_module.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nginx/ngx_stream_js_module.c b/nginx/ngx_stream_js_module.c index 5f4c6a04..21f65165 100644 --- a/nginx/ngx_stream_js_module.c +++ b/nginx/ngx_stream_js_module.c @@ -836,6 +836,7 @@ static JSClassDef ngx_stream_qjs_variables_class = { qjs_module_t *njs_stream_qjs_addon_modules[] = { &ngx_qjs_ngx_module, + &ngx_qjs_ngx_shared_dict_module, /* * Shared addons should be in the same order and the same positions * in all nginx modules. |