Made private group timestamp greater than that of latest message

This commit is contained in:
Torsten Grote
2016-11-14 10:42:42 -02:00
parent c4a152b543
commit 914b72505a
3 changed files with 5 additions and 25 deletions

View File

@@ -192,16 +192,6 @@ public class PrivateGroupManagerImpl extends BdfIncomingMessageHook implements
txn.attach(e);
}
@Override
public long getMessageTimestamp(MessageId id) throws DbException {
try {
BdfDictionary d = clientHelper.getMessageMetadataAsDictionary(id);
return d.getLong(KEY_TIMESTAMP);
} catch (FormatException e) {
throw new DbException(e);
}
}
@Override
public GroupMessageHeader addLocalMessage(GroupMessage m)
throws DbException {