Skip to content

Commit

Permalink
Merged in chriadam/base-sociald (pull request #16)
Browse files Browse the repository at this point in the history
[sociald] Bump version for release - JB#6626
  • Loading branch information
Chris Adams committed May 15, 2013
2 parents 3846e10 + ca4d1af commit f57d398
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rpm/sociald.spec
@@ -1,6 +1,6 @@
Name: sociald
Summary: Syncs device data from social services
Version: 0.0.7
Version: 0.0.8
Release: 1
Group: System/Applications
License: TBD
Expand Down
6 changes: 4 additions & 2 deletions src/twitter/twitterhometimelinesyncadaptor.cpp
Expand Up @@ -217,7 +217,8 @@ void TwitterHomeTimelineSyncAdaptor::finishedMeHandler()
QNetworkReply *reply = qobject_cast<QNetworkReply*>(sender());
if (!reply) {
// shouldn't happen, but just in case.
decrementSemaphore(accountId);
TRACE(SOCIALD_ERROR,
QString(QLatin1String("error: invalid reply in finished me - unable to decrement semaphore!")));
return;
}
int accountId = reply->property("accountId").toInt();
Expand Down Expand Up @@ -252,7 +253,8 @@ void TwitterHomeTimelineSyncAdaptor::finishedPostsHandler()
QNetworkReply *reply = qobject_cast<QNetworkReply*>(sender());
if (!reply) {
// shouldn't happen, but just in case
decrementSemaphore(accountId);
TRACE(SOCIALD_ERROR,
QString(QLatin1String("error: invalid reply in finished posts - unable to decrement semaphore!")));
return;
}

Expand Down

0 comments on commit f57d398

Please sign in to comment.