Skip to content

Commit

Permalink
Merge pull request #16 from hecom-rn/b2110
Browse files Browse the repository at this point in the history
fix(聊天未读消息数量): 聊天自己发送的语音,不应该记成未读消息。
  • Loading branch information
summer88123 authored Jan 7, 2021
2 parents 62c1bdf + 18541d2 commit d8e42fa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions standard/component/DetailListView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,7 @@ export default class extends React.PureComponent {
&& cur.from
&& me == cur.from
&& cur.data
&& cur.data.isSystem
&& cur.data.isSystem != true) {
&& (!(cur.data.isSystem && cur.data.isSystem == true))) {
hasFromMe = true;
}
if (cur.data.isSystem && cur.data.isSystem == true) {
Expand Down

0 comments on commit d8e42fa

Please sign in to comment.