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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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()