Skip to content

Commit

Permalink
fix: Remote manifest fetch test was not using full path (#675)
Browse files Browse the repository at this point in the history
fix: remote_manifest_fetch test wasn't using full path
  • Loading branch information
gpeacock authored Nov 15, 2024
1 parent aab027a commit a15f224
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/src/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3110,7 +3110,7 @@ impl Store {
if Store::is_valid_remote_url(ext_ref) {
#[cfg(feature = "fetch_remote_manifests")]
{
if let Ok(true) = get_settings_value::<bool>("remote_manifest_fetch") {
if let Ok(true) = get_settings_value::<bool>("verify.remote_manifest_fetch") {
Store::fetch_remote_manifest(ext_ref)
} else {
Err(Error::RemoteManifestUrl(ext_ref.to_owned()))
Expand Down

0 comments on commit a15f224

Please sign in to comment.