WebDAV: fixed Google throttling workaround during initial sync

The "retry on 401" code wasn't active during the initial sync
because the fact that the credentials had been accepted before
was only recorded on disk, but not in memory.
This commit is contained in:
Patrick Ohly 2011-06-29 07:12:47 -07:00
parent 3f6fa1a502
commit 487c105a15

View file

@ -146,6 +146,7 @@ public:
boost::shared_ptr<FilterConfigNode> node = m_context->getNode(WebDAVCredentialsOkay);
WebDAVCredentialsOkay.setProperty(*node, okay);
node->flush();
m_credentialsOkay = okay;
}
}