We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c6a431 commit 9ca6774Copy full SHA for 9ca6774
src/file/MultiFileSystem.cpp
@@ -95,16 +95,26 @@ cdc::FileSystem::Status MultiFileSystem::GetStatus()
95
96
void MultiFileSystem::Update()
97
{
98
- for (auto fileSystem : m_fileSystems)
+ //for (auto fileSystem : m_fileSystems)
99
+ //{
100
+ // fileSystem->Update();
101
+ //}
102
+
103
+ if (!m_fileSystems.empty())
104
- fileSystem->Update();
105
+ m_fileSystems[0]->Update();
106
}
107
108
109
void MultiFileSystem::Synchronize()
110
111
112
113
+ // fileSystem->Synchronize();
114
115
116
117
- fileSystem->Synchronize();
118
+ m_fileSystems[0]->Synchronize();
119
120
0 commit comments