Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mbtiles/src/bindiff.rs
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ impl BinDiffer<ApplierBefore, ApplierAfter> for BinDiffPatcher {

if self.patch_type == BinDiffGz {
new_tile = encode_gzip(&new_tile)?;
};
}

Ok(ApplierAfter {
coord: value.coord,
Expand Down
4 changes: 2 additions & 2 deletions mbtiles/src/copier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ impl MbtileCopierInt {
self.dst_mbt
.set_metadata_value(&mut conn, AGG_TILES_HASH_AFTER_APPLY, &hash)
.await?;
};
}

// TODO: perhaps disable all except --copy all when using with diffs, or else is not making much sense
if self.options.copy.copy_tiles() && !self.options.skip_agg_tiles_hash {
Expand Down Expand Up @@ -582,7 +582,7 @@ impl MbtileCopierInt {
}
} else {
init_mbtiles_schema(&mut *conn, dst).await?;
};
}

Ok(())
}
Expand Down