]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] fix lower transformation for utf symbols
authorPavel Podkorytov <pod.pavel@gmail.com>
Fri, 20 May 2022 10:30:54 +0000 (15:30 +0500)
committerPavel Podkorytov <pod.pavel@gmail.com>
Fri, 20 May 2022 10:30:54 +0000 (15:30 +0500)
lualib/lua_selectors/transforms.lua

index 28ae2c315501e472e1047cbfb45dbfe453d79cbe..aed5b246d94d5f892336fe35b62efb2a34681c29 100644 (file)
@@ -17,6 +17,7 @@ limitations under the License.
 local fun = require 'fun'
 local lua_util = require "lua_util"
 local rspamd_util = require "rspamd_util"
+local rspamd_text = require "rspamd_text"
 local ts = require("tableshape").types
 local logger = require 'rspamd_logger'
 local common = require "lua_selectors/common"
@@ -36,7 +37,7 @@ local transform_function = {
     },
     ['map_type'] = 'string',
     ['process'] = function(inp, _)
-      return inp:lower(),'string'
+      return rspamd_text.fromstring(inp):lower(true),'string'
     end,
     ['description'] = 'Returns the lowercased string',
   },