Added null check for removed ids
This commit is contained in:
parent
f7d0b5f61f
commit
83c6ef8c13
|
@ -411,7 +411,8 @@ public class {{o.name}} : IRpc
|
|||
|
||||
if(old < item)
|
||||
{
|
||||
removed.Add(old.MakeId());
|
||||
if(removed != null)
|
||||
removed.Add(old.MakeId());
|
||||
old_i++;
|
||||
has_diff = true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue