--- filezilla-3.57.0_org/src/interface/Mainfrm.cpp 2021-11-23 05:30:03.000000000 +0100 +++ ../srcfilezilla3/filezilla-3.57.0/src/interface/Mainfrm.cpp 2021-12-24 14:49:09.627384251 +0100 @@ -1408,6 +1408,10 @@ CServerPath path = pState->GetLastServerPath(); Bookmark bm; bm.m_remoteDir = path; + bm.m_sync = site.m_default_bookmark.m_sync; + if (bm.m_sync) { + bm.m_localDir = pState->GetLocalDir().GetPath(); + } ConnectToSite(site, bm); } @@ -2809,6 +2813,10 @@ CServerPath path = pState->GetLastServerPath(); Bookmark bm; bm.m_remoteDir = path; + bm.m_sync = site.m_default_bookmark.m_sync; + if (bm.m_sync) { + bm.m_localDir = pState->GetLocalDir().GetPath(); + } if (!ConnectToSite(site, bm, pState)) { break; }