Skip to content
Snippets Groups Projects
Commit 3f169162 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

#4495: Rework addressbook opening loop

parent 46ae3ebd
No related branches found
No related tags found
No related merge requests found
...@@ -114,10 +114,8 @@ addressbook_config_books() ...@@ -114,10 +114,8 @@ addressbook_config_books()
// If book_data exists // If book_data exists
if (!book_data) { if (!book_data) {
ERROR ("Addressbook: Error: Could not open book (%s:%d)", __FILE__, __LINE__); ERROR ("Addressbook: Error: Could not open book (%s:%d)", __FILE__, __LINE__);
continue; book_data->active = TRUE;
} }
book_data->active = TRUE;
} }
g_strfreev (list); g_strfreev (list);
......
...@@ -243,7 +243,7 @@ void AudioRtpSession::sendMicData() ...@@ -243,7 +243,7 @@ void AudioRtpSession::sendMicData()
_timestampCount++; _timestampCount++;
// Reset timestamp to make sure the timing information are up to date // Reset timestamp to make sure the timinlipg information are up to date
if (_timestampCount > RTP_TIMESTAMP_RESET_FREQ) { if (_timestampCount > RTP_TIMESTAMP_RESET_FREQ) {
_timestamp = getCurrentTimestamp(); _timestamp = getCurrentTimestamp();
_timestampCount = 0; _timestampCount = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment