Merge "Fix frame:extensionTag when not passed args"

This commit is contained in:
jenkins-bot 2013-10-11 18:27:38 +00:00 committed by Gerrit Code Review
commit 32cc0a2979

View file

@ -467,7 +467,7 @@ local function newFrame( frameId, ... )
end
if args == nil then
args = {}
args = { content }
elseif type( args ) == 'string' or type( args ) == 'number' then
args = { content, args }
elseif type( args ) == 'table' then