diff --git a/core/src/stores/postgres.rs b/core/src/stores/postgres.rs index 684a89f29ac6..0b996bbeb0f0 100644 --- a/core/src/stores/postgres.rs +++ b/core/src/stores/postgres.rs @@ -3196,11 +3196,11 @@ impl Store for PostgresStore { let parents: Vec = r.get(3); Ok(Folder::new( - project, - &data_source_id, - &node_id, + project.clone(), + data_source_id.clone(), + node_id, timestamp as u64, - &title, + title, parents, )) })