check author in = operator

This commit is contained in:
webzwo0i 2015-03-03 15:20:33 +01:00
parent 4e0353b3ef
commit 01cd82427a
1 changed files with 6 additions and 1 deletions

View File

@ -656,7 +656,12 @@ function handleUserChanges(data, cb)
, op
while(iterator.hasNext()) {
op = iterator.next()
if(op.opcode != '+') continue;
//+ can add text with attribs
//= can change or add attribs
//- can have attribs, but they are discarded and don't show up in the apool
if(op.opcode == '-') continue;
op.attribs.split('*').forEach(function(attr) {
if(!attr) return
attr = wireApool.getAttrib(attr)