diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-06-24 19:52:16 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-06-24 19:52:16 +0000 |
commit | f42360672d6cb4cff042a6a2426fb767dcd55d8c (patch) | |
tree | 7163fdd805f98ce485329fba4f441eab0154e7f4 /protocols/SkypeWeb/src/skype_history_sync.cpp | |
parent | 60747f7048f064d59ec1497962446e674e5ad4e3 (diff) |
SkypeWeb: Call duration fix.
git-svn-id: http://svn.miranda-ng.org/main/trunk@14368 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_history_sync.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/skype_history_sync.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_history_sync.cpp b/protocols/SkypeWeb/src/skype_history_sync.cpp index ef57c93e8a..9638e278a8 100644 --- a/protocols/SkypeWeb/src/skype_history_sync.cpp +++ b/protocols/SkypeWeb/src/skype_history_sync.cpp @@ -131,7 +131,7 @@ void CSkypeProto::OnGetServerHistory(const NETLIBHTTPREQUEST *response) if (iDuration != NULL)
{
hours = iDuration / 3600;
- mins = iDuration / 60;
+ mins = ((iDuration / 60) - (hours * 60));
sec = iDuration % 60;
}
else
|