Minor bug that could cause the ReplayQueue to start even though Folder didn't open

This commit is contained in:
Jim Nelson 2013-07-03 19:49:01 -07:00
parent b9997464bf
commit a60c8bb99e

View file

@ -556,7 +556,7 @@ private class Geary.ImapEngine.GenericFolder : Geary.AbstractFolder, Geary.Folde
// notify any threads of execution waiting for the remote folder to open that the result
// of that operation is ready
try {
remote_semaphore.notify_result(remote != null, null);
remote_semaphore.notify_result(remote_folder != null, null);
} catch (Error notify_err) {
debug("Unable to fire semaphore notifying remote folder ready/not ready: %s",
notify_err.message);