Skip to content
Snippets Groups Projects
Commit 1e916999 authored by Massimiliano's avatar Massimiliano
Browse files

Added "Last updated" before date.

parent c660b3e0
No related merge requests found
......@@ -101,6 +101,7 @@ public class StateActivity extends AppCompatActivity {
String name = c.getString("name");
String description = c.getString("description");
String updated_at = c.getString("updated_at");
String lastUpdated = "Last updated: " + updated_at;
String status_name = c.getString("status_name");
// tmp hash map for single service
......@@ -110,7 +111,7 @@ public class StateActivity extends AppCompatActivity {
service.put("id", id);
service.put("name", name);
service.put("description", description);
service.put("updated_at", updated_at);
service.put("updated_at", lastUpdated);
service.put("status_name", status_name);
// adding service to service list
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment