diff options
| author | Martin Ridgers <[email protected]> | 2024-09-17 13:26:52 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2024-09-19 15:26:13 +0200 |
| commit | 7f6e6461279b11d1fd60d24b4a490d608d47f51a (patch) | |
| tree | aad99d7f18607adf659ea42410470475e3679bce /src/zenserver/vfs/vfsimpl.cpp | |
| parent | Removed redundant initialisation (diff) | |
| download | zen-7f6e6461279b11d1fd60d24b4a490d608d47f51a.tar.xz zen-7f6e6461279b11d1fd60d24b4a490d608d47f51a.zip | |
Mandatory IterateOplog() paging argument
Diffstat (limited to 'src/zenserver/vfs/vfsimpl.cpp')
| -rw-r--r-- | src/zenserver/vfs/vfsimpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenserver/vfs/vfsimpl.cpp b/src/zenserver/vfs/vfsimpl.cpp index 292fce9eb..80de1e1a5 100644 --- a/src/zenserver/vfs/vfsimpl.cpp +++ b/src/zenserver/vfs/vfsimpl.cpp @@ -399,7 +399,7 @@ VfsServiceDataSource::PopulateDirectory(std::string NodePath, VfsTreeNode& DirNo Oplog->IterateOplog([&](CbObjectView Op) { EmitFilesForDataArray(Op["packagedata"sv].AsArrayView()); EmitFilesForDataArray(Op["bulkdata"sv].AsArrayView()); - }); + }, ProjectStore::Oplog::Paging{}); DirNode.AddFileNode("stats.json", 42, Oid::Zero); } |