Skip to content

Commit 47fb89e

Browse files
committed
fix: Incorrect redirect in asn
1 parent 438b8a9 commit 47fb89e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

website/web/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def index():
5050
def asn_details():
5151
load_session()
5252
if 'asn' not in session:
53-
return redirect(url_for('/'))
53+
return redirect(url_for('index'))
5454
asn_descriptions = bgpranking.get_asn_descriptions(asn=session['asn'], all_descriptions=True)['response']
5555
sources = bgpranking.get_sources(date=session['date'])['response']
5656
prefix = session.pop('prefix', None)

0 commit comments

Comments
 (0)