Legacy not-supported page is a dead link
Summary
In https://gitlab.com/minds/front/blob/master/src/index.php
<script>
var ua = window.navigator.userAgent;
if(ua.indexOf("MSIE") > -1 ||
(ua.indexOf("Android 4.3") > -1 && !(ua.indexOf('Chrome') > -1)) //android 4.3, but not chrome browser
){
window.location.href = window.location.href.replace('<?= Minds\Core\Config::_()->get('site_url') ?>', 'https://www.minds.com/not-supported');
}
</script>
https://www.minds.com/not-supported links nowhere. This is redundant code, we should either make a simple page or remove it.
Steps to reproduce
https://www.minds.com/not-supported
Platform information
Platform agnostic.
What is the current bug behavior?
Dead link (try it)
What is the expected correct behavior?
Either should link to a valid page or is legacy thats no longer triggered.
Relevant logs and/or screenshots
(Paste any relevant logs - please use code blocks (```) to format console output, logs, and code as it's very hard to read otherwise.)
Possible fixes
(If you can, link to the line of code that might be responsible for the problem)