summaryrefslogtreecommitdiffstats
path: root/synchronizer/listener.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'synchronizer/listener.cpp')
-rw-r--r--synchronizer/listener.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/synchronizer/listener.cpp b/synchronizer/listener.cpp
index dc0d9dd..a84623d 100644
--- a/synchronizer/listener.cpp
+++ b/synchronizer/listener.cpp
@@ -209,7 +209,10 @@ void Listener::processCommand(int commandId, uint messageId, Client &client, uin
209 case Akonadi2::Commands::ModifyEntityCommand: 209 case Akonadi2::Commands::ModifyEntityCommand:
210 case Akonadi2::Commands::CreateEntityCommand: 210 case Akonadi2::Commands::CreateEntityCommand:
211 log(QString("\tCommand id %1 of type %2 from %3").arg(messageId).arg(commandId).arg(client.name)); 211 log(QString("\tCommand id %1 of type %2 from %3").arg(messageId).arg(commandId).arg(client.name));
212 m_resource->processCommand(commandId, client.commandBuffer, size, m_pipeline); 212 loadResource();
213 if (m_resource) {
214 m_resource->processCommand(commandId, client.commandBuffer, size, m_pipeline);
215 }
213 break; 216 break;
214 default: 217 default:
215 if (commandId > Akonadi2::Commands::CustomCommand) { 218 if (commandId > Akonadi2::Commands::CustomCommand) {