Just noticed that the OneThrive plugin (plugin_OneSignal.lua) has the following code:
OneSignalObject.SendTag = function(key, value) print("Called OneSignal.SendTag(" .. key .. ", " .. value .. ")") end
That code crashes with value is boolean. It should be changed to tostring(value) or use comma instead of … to concatenate.