Showing
3 changed files
with
3 additions
and
3 deletions
... | @@ -12,7 +12,7 @@ public class Device { | ... | @@ -12,7 +12,7 @@ public class Device { |
12 | } | 12 | } |
13 | 13 | ||
14 | public String getCreated() { | 14 | public String getCreated() { |
15 | - return created; | 15 | + return created.substring(0,10) + " " + created.substring(11, 19); |
16 | } | 16 | } |
17 | 17 | ||
18 | public int getDeviceId() { | 18 | public int getDeviceId() { | ... | ... |
... | @@ -19,7 +19,7 @@ public class Video { | ... | @@ -19,7 +19,7 @@ public class Video { |
19 | } | 19 | } |
20 | 20 | ||
21 | public String getCreated() { | 21 | public String getCreated() { |
22 | - return created; | 22 | + return created.substring(0,10) + " " + created.substring(11, 19); |
23 | } | 23 | } |
24 | 24 | ||
25 | public String getS3link() { | 25 | public String getS3link() { | ... | ... |
-
Please register or login to post a comment