Skip to content

Commit 71b2608

Browse files
authored
Merge pull request #6711 from edgarcosta/mathscinet
2 parents df47d42 + 7be4c98 commit 71b2608

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lmfdb/knowledge/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def ref_to_link(txt):
189189
ref = ref.replace(":", "")
190190
the_mr = ref[2:] # remove the "MR"
191191
this_link = '{{ LINK_EXT("' + 'MR:' + the_mr + '", '
192-
this_link += '"https://www.ams.org/mathscinet-getitem?mr='
192+
this_link += '"https://mathscinet.ams.org/mathscinet-getitem?mr='
193193
this_link += the_mr + '") | safe}}'
194194
elif ref.lower().startswith("arxiv"):
195195
ref = ref.replace(":", "")

lmfdb/utils/uploader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def display(self, value):
105105
if m.group("arxiv"):
106106
url = "https://arxiv.org/abs/" + m.group("arxiv")
107107
elif m.group("mr"):
108-
url = "https://www.ams.org/mathscinet-getitem?mr=" + m.group("mr")
108+
url = "https://mathscinet.ams.org/mathscinet-getitem?mr=" + m.group("mr")
109109
elif m.group("doi"):
110110
url = "https://doi.org/" + m.group("doi")
111111
return f'<a href="{url}">{value}</a>'

0 commit comments

Comments
 (0)