Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Krishna Vemulavada
/
vera_2.1_app
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
9508e0fd
authored
Oct 11, 2019
by
Simhachalam ch
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
fixed date format issue
parent
90776c2c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
app/src/main/java/com/vsoft/vera/ui/ChatActivity.java
app/src/main/java/com/vsoft/vera/ui/ChatActivity.java
View file @
9508e0fd
...
...
@@ -760,7 +760,7 @@ public class ChatActivity extends AppCompatActivity implements OnDSListener, OnD
Log
.
i
(
"Print"
,
jsonObject
.
toString
());
mSocket
.
emit
(
NEW_MESSAGE
,
jsonObject
);
ChatLogManager
.
saveLogEvent
(
message
,
""
,
"true"
,
new
Date
()
.
toString
()
);
ChatLogManager
.
saveLogEvent
(
message
,
""
,
"true"
,
new
Date
());
}
else
{
mInputMessageView
.
requestFocus
();
...
...
@@ -1024,7 +1024,7 @@ public class ChatActivity extends AppCompatActivity implements OnDSListener, OnD
}
if
(!
message
.
isEmpty
())
{
ChatLogManager
.
saveLogEvent
(
""
,
message
,
"true"
,
new
Date
()
.
toString
()
);
ChatLogManager
.
saveLogEvent
(
""
,
message
,
"true"
,
new
Date
());
if
(
message
.
contains
(
Constants
.
RESET_PASSWORD_NAVIGATION_SCREEN
)){
runOnUiThread
(
new
Runnable
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment