Skip to content

Commit

Permalink
Merge pull request abrignoni#359 from abrignoni/in_progress
Browse files Browse the repository at this point in the history
Update biomeIntents.py
  • Loading branch information
abrignoni authored Sep 16, 2022
2 parents 78a6ebd + c840136 commit ad78cda
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions scripts/artifacts/biomeIntents.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,11 @@ def get_biomeIntents(files_found, report_folder, seeker, wrap_text):

b = (protostuffinner['8']).decode()#threadid
c = (protostuffinner.get('15', ''))#senderid if not binary show dict
d = (protostuffinner['2']['1']['4'])

try:
d = (protostuffinner['2']['1']['4'])
except:
d = ''

datos = f'Thread ID: {b}, Sender ID: {c}, Content:, {a}'
datoshtml = (datos.replace(',', '<br>'))

Expand Down

0 comments on commit ad78cda

Please sign in to comment.