Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
J
jami-client-uwp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Analytics
Analytics
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
savoirfairelinux
jami-client-uwp
Commits
4cdd8926
Commit
4cdd8926
authored
Oct 02, 2016
by
Nicolas Jager
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix : property _unreadMessages set at 0
Change-Id: I7e4a5a9e745abedbb5c5584890e66bbbb7273e4c Tuleap: #1203
parent
14ba30c4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
SmartPanel.xaml.cpp
SmartPanel.xaml.cpp
+8
-1
No files found.
SmartPanel.xaml.cpp
View file @
4cdd8926
...
...
@@ -255,15 +255,22 @@ SmartPanel::_smartList__SelectionChanged(Platform::Object^ sender, Windows::UI::
}
auto
call
=
item
->
_call
;
auto
contact
=
item
->
_contact
;
if
(
call
)
{
auto
state
=
call
->
state
;
if
(
state
==
CallStatus
::
IN_PROGRESS
)
{
if
(
contact
)
{
contact
->
_unreadMessages
=
0
;
ContactsViewModel
::
instance
->
saveContactsToFile
();
}
summonVideoPage
();
return
;
}
}
auto
contact
=
item
->
_contact
;
if
(
contact
)
{
summonMessageTextPage
();
contact
->
_unreadMessages
=
0
;
...
...
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