Changes some DF method names to avoid confusion with db ones

This commit is contained in:
erwanlr
2019-07-07 08:35:41 +01:00
parent 921096ca10
commit 99c2aaef7a
5 changed files with 16 additions and 16 deletions

View File

@@ -31,7 +31,7 @@ module WPScan
# @return [ Array<String> ]
def potential_readme_filenames
@potential_readme_filenames ||= [*(DB::DynamicFinders::Plugin.db_data.dig(slug, 'Readme', 'path') || super)]
@potential_readme_filenames ||= [*(DB::DynamicFinders::Plugin.df_data.dig(slug, 'Readme', 'path') || super)]
end
end
end