mirror of
				https://github.com/fabianonline/telegram_backup.git
				synced 2025-10-31 07:39:21 +00:00 
			
		
		
		
	Message now caches the message.
This commit is contained in:
		| @@ -7,6 +7,7 @@ import com.google.gson.JsonObject; | ||||
| public class Message { | ||||
| 	protected static String tableName = "messages"; | ||||
| 	private JsonObject json; | ||||
| 	private String message = null; | ||||
| 	 | ||||
| 	public Message(String json) { | ||||
| 		this.json = new JsonParser().parse(json).getAsJsonObject(); | ||||
| @@ -18,6 +19,7 @@ public class Message { | ||||
| 	} | ||||
| 	 | ||||
| 	public String getMessage() { | ||||
| 		return json.getAsJsonPrimitive("message").getAsString(); | ||||
| 		if (message != null) return message; | ||||
| 		return message = json.getAsJsonPrimitive("message").getAsString(); | ||||
| 	} | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user