diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-03-04 19:29:21 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-04 19:29:21 +0900 |
| commit | d0227b95f6eda5ed65d614ccb54770ba4bc652b2 (patch) | |
| tree | 6b97981860aeb3bbb786d28ccf901ce653ddf841 /src/web | |
| parent | v3963 (diff) | |
| download | sharkey-d0227b95f6eda5ed65d614ccb54770ba4bc652b2.tar.gz sharkey-d0227b95f6eda5ed65d614ccb54770ba4bc652b2.tar.bz2 sharkey-d0227b95f6eda5ed65d614ccb54770ba4bc652b2.zip | |
Fix bug
Diffstat (limited to 'src/web')
| -rw-r--r-- | src/web/app/boot.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/app/boot.js b/src/web/app/boot.js index a6d0f3aad9..2d2e27df30 100644 --- a/src/web/app/boot.js +++ b/src/web/app/boot.js @@ -89,7 +89,7 @@ const meta = await res.json(); // Compare versions - if (meta.version != VERSION) { + if (meta.version != ver) { alert( 'Misskeyの新しいバージョンがあります。ページを再度読み込みします。' + '\n\n' + |