Skip to content

Commit

Permalink
fixed backwards cache compability
Browse files Browse the repository at this point in the history
  • Loading branch information
7h3Rabbit committed Dec 28, 2024
1 parent d60f60a commit 0cc1a38
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/software.py
Original file line number Diff line number Diff line change
Expand Up @@ -1097,6 +1097,9 @@ def identify_software(filename, origin_domain, rules):

if '_software' in har_data:
global_software = har_data['_software']
elif 'software' in har_data:
global_software = har_data['software']

if 'cookies' in har_data:
global_cookies = har_data['cookies']

Expand Down

0 comments on commit 0cc1a38

Please sign in to comment.