Skip to content

Commit

Permalink
fix: if asset.static_details().is_none() continue
Browse files Browse the repository at this point in the history
  • Loading branch information
RequescoS committed Nov 13, 2024
1 parent d205eef commit 9276076
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions rocks-db/src/dump_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,9 @@ impl Storage {
unsafe {
asset = fb::root_as_asset_complete_details_unchecked(value);
}
if asset.static_details().is_none() {
continue;
}
let metadata_url = asset
.dynamic_details()
.and_then(|dd| dd.url())
Expand Down

0 comments on commit 9276076

Please sign in to comment.