Fix pnpm prep on heavy-lifting subcrate (#2475)

Fix
This commit is contained in:
Ericson "Fogo" Soares
2024-05-10 15:25:19 -03:00
committed by GitHub
parent b2bbcea245
commit 062c71fe41
3 changed files with 3 additions and 2 deletions

View File

@@ -1,3 +1,4 @@
#![recursion_limit = "256"]
#![warn(
clippy::all,
clippy::pedantic,

View File

@@ -727,7 +727,7 @@ async fn get_all_children_files_by_extensions(
.collect::<Vec<_>>()
.join(",")
),
PrismaValue::Int(i64::from(parent_iso_file_path.location_id())),
PrismaValue::Int(parent_iso_file_path.location_id()),
PrismaValue::String(format!(
"{}%",
parent_iso_file_path

View File

@@ -196,7 +196,7 @@ async fn get_files_by_extensions(
.collect::<Vec<_>>()
.join(",")
),
PrismaValue::Int(i64::from(parent_iso_file_path.location_id())),
PrismaValue::Int(parent_iso_file_path.location_id()),
PrismaValue::String(
parent_iso_file_path
.materialized_path_for_children()