mirror of https://github.com/CIRCL/lookyloo
fix: use the right template for capture_hash_details
parent
0dbf4624bc
commit
28e81a1eae
|
@ -1725,7 +1725,7 @@ def identifier_details(identifier_type: str, identifier: str) -> str:
|
||||||
@app.route('/capture_hash_details/<string:hash_type>/<string:h>', methods=['GET'])
|
@app.route('/capture_hash_details/<string:hash_type>/<string:h>', methods=['GET'])
|
||||||
def capture_hash_details(hash_type: str, h: str) -> str:
|
def capture_hash_details(hash_type: str, h: str) -> str:
|
||||||
captures = get_capture_hash_investigator(hash_type, h)
|
captures = get_capture_hash_investigator(hash_type, h)
|
||||||
return render_template('identifier_details.html', hash_type=hash_type,
|
return render_template('hash_type_details.html', hash_type=hash_type,
|
||||||
h=h,
|
h=h,
|
||||||
captures=captures)
|
captures=captures)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue