diff --git a/src/commands/sync.rs b/src/commands/sync.rs index 73bfe1f..571b83e 100644 --- a/src/commands/sync.rs +++ b/src/commands/sync.rs @@ -689,7 +689,7 @@ impl SyncSession { fn is_image_asset(path: &Path) -> bool { match path.extension().and_then(|ext| ext.to_str()) { // TODO: Expand the definition of images? - Some("png") | Some("jpg") => true, + Some("png") | Some("jpg") | Some("webp") => true, _ => false, }