updated readme

Daniel Gultsch created

Change summary

README.md                                                  | 2 ++
src/main/java/eu/siacs/conversations/entities/Message.java | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)

Detailed changes

README.md ๐Ÿ”—

@@ -195,6 +195,10 @@ You can find a detailed description of how your server, the app server and FCM a
 
  ยน Your server only needs to support the server side of [XEP-0357: Push Notifications](http://xmpp.org/extensions/xep-0357.html). If you use the Play Store version you do **not** need to run your own app server. The server modules are called *mod_cloud_notify* on Prosody and *mod_push* on ejabberd.
 
+
+#### But why do I need a permanent if I use Google Push?

src/main/java/eu/siacs/conversations/entities/Message.java ๐Ÿ”—

@@ -491,7 +491,7 @@ public class Message extends AbstractEntity {
 		return Collections.unmodifiableSet(this.readByMarkers);
 	}
 
-	public boolean similar(Message message) {
+	boolean similar(Message message) {
 		if (type != TYPE_PRIVATE && this.serverMsgId != null && message.getServerMsgId() != null) {
 			return this.serverMsgId.equals(message.getServerMsgId()) || Edited.wasPreviouslyEditedServerMsgId(edits, message.getServerMsgId());
 		} else if (Edited.wasPreviouslyEditedServerMsgId(edits, message.getServerMsgId())) {