Framework Bug

I pasted the revised “Framework” implementation file (from github) into my running plugin and saw two bugs. The first is a missing parens () on line 150 local function nulltimer

The second is a bit less straightforward as the line seems to read OK, but won’t compile. At line 172 reads if pluginTimers[pid] == nil then error "No timer " .. pid end The log complains of the concatenation (perhaps because of the nil value of pid), so I removed the “… pid” and all works fine: if pluginTimers[pid] == nil then error "No timer" end

I wasn’t sure where to post this as there is no plugin framework category yet…

OK. I updated this. In future, this topic should probably go under the plugin development section.