fix(primitives-traits): delegate is_create for Extended::Other to fix create-detection (#18699)

This commit is contained in:
Galoretka
2025-09-25 13:34:32 +03:00
committed by GitHub
parent 0f46e38a7d
commit 9a26947db6

View File

@@ -95,7 +95,7 @@ where
fn is_create(&self) -> bool {
match self {
Self::BuiltIn(tx) => tx.is_create(),
Self::Other(_tx) => false,
Self::Other(tx) => tx.is_create(),
}
}