Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Mobile
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
201
Merge Requests
16
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Minds
Minds Mobile
Commits
f4bc7e5f
Commit
f4bc7e5f
authored
2 hours ago
by
Juan Manuel Solaro
Browse files
Options
Download
(fix) remove manual log to sentry
parent
ff468f59
fix-username-touppercase-not-a-function
1 merge request
!444
(fix) add username to string in base model
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
5 deletions
+0
-5
src/messenger/conversation/ConversationView.js
View file @
f4bc7e5f
...
...
@@ -38,11 +38,6 @@ export default class ConversationView extends Component {
let
unread
=
item
.
unread
?
<
Icon
style
=
{
styles
.
icons
}
name
=
'
md-notifications
'
color
=
'
#4caf50
'
size
=
{
19
}
/> : null
;
let
online
=
item
.
online
?
<
Icon
style
=
{
styles
.
icons
}
name
=
'
md-radio-button-on
'
color
=
'
#2196f3
'
size
=
{
19
}
/> : null
;
// Added to capture information about /issues/1203549247/?project=1538735
if
(
item
.
username
&&
!
item
.
username
.
toUpperCase
)
{
Sentry
.
captureMessage
(
'
ISSUE 1203549247 No username on
'
+
item
.
guid
+
'
name:
'
+
item
.
name
);
}
return
(
<
TouchableOpacity
style
=
{
styles
.
row
}
onPress
=
{
this
.
_navToConversation
}
>
<
Image
source
=
{
avatarImg
}
style
=
{
styles
.
avatar
}
/
>
...
...
This diff is collapsed.
Please
register
or
sign in
to comment