Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions check_browser_databse.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
<body>
<script>
var test=indexedDB ||webkitindexedDB ||mozindexedDB||msindexedDB;
if (!test)
if (typeof(Storage) !== "undefined")
document.write('<center><h1>PLEASE UPDATE YOUR BROWSER</h1></center>');
else
location.href='https://keshavsingh.ml';
location.href='https://keshavsingh.ml'; // Change the keshavsingh.ml as it is not working
</script>
</body>
</html>