diff --git a/static/mobile/js/utils.js b/static/mobile/js/utils.js index e3597fd5..92d6c806 100644 --- a/static/mobile/js/utils.js +++ b/static/mobile/js/utils.js @@ -125,7 +125,10 @@ const clickLink = function(event) { } document.location.hash = '#' + link.slice(1) } else { - if (!link.startsWith('/m')) { + if (link.includes('/download/')) { + document.location.href = link + return + } else if (!link.startsWith('/m')) { link = '/m' + link } history.pushState({}, '', link);