diff --git a/src/nodash/models/NoUser.java b/src/nodash/models/NoUser.java index 4ed6511..e4c6995 100644 --- a/src/nodash/models/NoUser.java +++ b/src/nodash/models/NoUser.java @@ -105,8 +105,7 @@ public abstract class NoUser implements Serializable { public final byte[] createFile(char[] password) { List tempActions = outgoing; - int tempActionCount = actions; - + touchRandomizer(); outgoing = new ArrayList(); actions = 0; @@ -115,7 +114,6 @@ public abstract class NoUser implements Serializable { byte[] json = NoUtil.toBytes(gson.toJson(this)); byte[] encrypted = NoUtil.encrypt(json, password); - actions = tempActionCount; outgoing = tempActions; return encrypted; }