# HG changeset patch # User jbe # Date 1575904154 -3600 # Node ID 7e874b5227b683efe8a5ee4ad4111c4fa87b3783 # Parent a0f1a4e76556fd46982d6e29d0d7fcfd1a45845e Bugfix in array support: info.type may be nil diff -r a0f1a4e76556 -r 7e874b5227b6 libraries/mondelefant/mondelefant_atom_connector.lua --- a/libraries/mondelefant/mondelefant_atom_connector.lua Mon Dec 09 15:54:41 2019 +0100 +++ b/libraries/mondelefant/mondelefant_atom_connector.lua Mon Dec 09 16:09:14 2019 +0100 @@ -228,7 +228,10 @@ if value == nil then return nil else - local array_type = string.match(info.type, "^(.*)_array$") + local array_type = nil + if info.type then + array_type = string.match(info.type, "^(.*)_array$") + end if array_type then local result = {} local count = 0