]> source.dussan.org Git - rspamd.git/commitdiff
Revert "[Minor] fix lower transformation for utf symbols"
authorPavel Podkorytov <pod.pavel@gmail.com>
Sat, 21 May 2022 10:53:00 +0000 (15:53 +0500)
committerPavel Podkorytov <pod.pavel@gmail.com>
Sat, 21 May 2022 10:53:00 +0000 (15:53 +0500)
This reverts commit fbb7db65a5cf50dc642550688407e724d56ebe34.

lualib/lua_selectors/transforms.lua

index aed5b246d94d5f892336fe35b62efb2a34681c29..28ae2c315501e472e1047cbfb45dbfe453d79cbe 100644 (file)
@@ -17,7 +17,6 @@ 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"
@@ -37,7 +36,7 @@ local transform_function = {
     },
     ['map_type'] = 'string',
     ['process'] = function(inp, _)
-      return rspamd_text.fromstring(inp):lower(true),'string'
+      return inp:lower(),'string'
     end,
     ['description'] = 'Returns the lowercased string',
   },