Add new recover script

This commit is contained in:
syuilo 2018-04-11 01:41:35 +09:00
parent 40b6797933
commit 21119e972d

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Misskeyのリカバリ</title>
<script>
const v = window.prompt('Enter version');
if (v) {
localStorage.setItem('v', v);
setTimeout(() => {
location.reload(true);
}, 500);
} else {
location.href = '/';
}
</script>
</head>
</html>