Exclude transform from Imaginate hash (#1326)

This commit is contained in:
Dennis Kobert 2023-07-29 02:20:04 +02:00 committed by Keavon Chambers
parent 9d425db5a4
commit 59420cb5dd

View file

@ -456,7 +456,7 @@ macro_rules! generate_imaginate_node {
use std::hash::Hasher;
use xxhash_rust::xxh3::Xxh3;
let mut hasher = Xxh3::new();
frame.hash(&mut hasher);
frame.image.hash(&mut hasher);
let hash =hasher.finish();
Box::pin(async move {