Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merged in chriadam/base-sociald (pull request #12)
[sociald] Perform update/purge for all Facebook data types - JB#5493
  • Loading branch information
Chris Adams committed May 8, 2013
2 parents f038e61 + e9ef2e1 commit ba1aac8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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.6
Version: 0.0.7
Release: 1
Group: System/Applications
License: TBD
Expand Down
2 changes: 1 addition & 1 deletion src/facebook/facebookdatatypesyncadaptor.cpp
Expand Up @@ -85,7 +85,7 @@ void FacebookDataTypeSyncAdaptor::sync(const QString &dataType)
// 3) for existing accounts, pull new data for the existing account

QList<int> newIds, purgeIds, updateIds;
m_fbsa->checkAccounts(SyncService::Images, &newIds, &purgeIds, &updateIds);
m_fbsa->checkAccounts(m_dataType, &newIds, &purgeIds, &updateIds);
purgeDataForOldAccounts(purgeIds); // call the derived-class purge entrypoint.
updateDataForAccounts(newIds);
updateDataForAccounts(updateIds);
Expand Down

0 comments on commit ba1aac8

Please sign in to comment.