File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
volatility3/framework/interfaces Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -494,8 +494,7 @@ def unsatisfied(
494494 """Validates the instance requirement based upon its
495495 `instance_type`."""
496496 config_path = path_join (config_path , self .name )
497-
498- value = self .config_value (context , config_path , None )
497+ value = self .config_value (context , config_path , self .default )
499498 if not isinstance (value , self .instance_type ):
500499 vollog .log (
501500 constants .LOGLEVEL_V ,
@@ -536,7 +535,7 @@ def unsatisfied(
536535 """Checks to see if a class can be recovered."""
537536 config_path = path_join (config_path , self .name )
538537
539- value = self .config_value (context , config_path , None )
538+ value = self .config_value (context , config_path , self . default )
540539 self ._cls = None
541540 if value is not None and isinstance (value , str ):
542541 if "." in value :
You can’t perform that action at this time.
0 commit comments